$(function(){
	
	<!-- Link to Newsletter from footer -->
	$(".newsletter a").bind("click", function(){
		$("body").scrollTo("#dfc-ch-nav", 800);
        $("#nav-enews").trigger("click");
        return false;
    });
	
	/*Cream Menu Tooltips*/
	$("li:not(.selected)", "ul#m_cream").hover(
		function(){
			if(this.id=="m_ccf"){
				$(this).find("em").animate({
					right:'-130px',
					width:'160px'
				}, 125);
			}else{
				
				$(this).find("em").animate({
					right:'-110px',
					width:'145px'
				}, 125);
			}
		},
		function(){
			$(this).find("em").animate({
				right:'30px',
				width:'0'
			}, 75);
		}
	);
	
	
	/*Tabs*/
	$(".list_tabs").tabs(".list_tabs_content > div", {current:"selected"});
	//$(".list_tabs").tabs(".list_tabs_content > div", {current:"selected", effect: 'fade', fadeOutSpeed: "fast"});
	
	
	/*DFC Widget Init*/
	/*var DFCcookie = $.DFCCookie('DFCWidget') ? false : true;
	$("#dfc_data").DFCWidget({
		wtSite:"Any-day-magic",
		widgetAttrs: { id:'dfc_widget', className:'noshadow' },
		onLoad: {show:DFCcookie, delay:3000},
		onShow:function (widget) {
			if(DFCcookie){
				$('#container').css({ background:'none' });
				$('.wrap').css({ marginTop:64 });
				t = setTimeout(function(){ //Old version of jQuery - so no delay()
					$('.wrap').animate({ marginTop:0 }, 1500, function(){
						$('#container').css('background', 'url(/design/anyday/img/bg_header.gif) center top no-repeat');												   
					});
				}, 1500);
				$.DFCCookie('DFCWidget', true, { expires: 1, path: '/'  });
			}else{
				$('#dfc_widget').width(305);
			}
		}
	});
	$("#dfc_data").DFCWidget();*/
	
	
	$(document).ready(function(){
		if(isIE6){
			$("li", ".list_smartcolumns").hover(
				function(){	$(this).children(".block_content").show(); },
				function(){	$(this).children(".block_content").hide(); }
			);
		} else {
			$("li", ".list_smartcolumns").hover(
				function(){ $(this).children(".block_content").fadeIn(1);    },
				function(){	$(this).children(".block_content").fadeOut(200); }
			);
		}
		
		
	});
	
	<!-- FACEBOOK LIKE BUTTON SDK -->
	(function(d, s, id) {
		var js, fjs = d.getElementsByTagName(s)[0];
		if (d.getElementById(id)) return;
			js = d.createElement(s); js.id = id;
			js.src = "//connect.facebook.net/en_GB/all.js#xfbml=1";
			fjs.parentNode.insertBefore(js, fjs);
		}(document, 'script', 'facebook-jssdk'));
	<!-- END FACEBOOK LIKE BUTTON SDK -->
	});

