jQuery.noConflict();

jQuery(document).ready(function(){

	jQuery("a[rel*='lightbox']").fancybox({
		'overlayOpacity' : 0.6
	}); 
		jQuery("#TM_Grupp1").hover(function(){
 			jQuery("#Grupp1").show();
		},
		function(){
			jQuery("#Grupp1").hide();
 	});
	
	jQuery("#TM_Grupp2").hover(function(){
 			jQuery("#Grupp2").show();
		},
		function(){
			jQuery("#Grupp2").hide();
 	});
		
	jQuery("#TM_Grupp3").hover(function(){
 			jQuery("#Grupp3").show();
		},
		function(){
			jQuery("#Grupp3").hide();
 	});
		
	jQuery("#TM_Grupp4").hover(function(){
 			jQuery("#Grupp4").show();
		},
		function(){
			jQuery("#Grupp4").hide();
 	});	
 	
 	jQuery("#TM_Brands").hover(function(){
 			jQuery("#Brands").show();
		},
		function(){
			jQuery("#Brands").hide();
 	});
})


DisplayPopup = function(width,height)
{
	if (CheckCookie())
	{
	
		jQuery.fancybox({
			 'padding' : 0,
			 'autoScale' : false,
			 'transitionIn' : 'none',
			 'transitionOut' : 'none',
			 'title' : this.title,
			 'width' : width,
			 'height' : height,
			 'href' : '/cgi-bin/ibutik/AIR_ibutik.pl?funk=Webbsida&ID=106&Ajax=J',
			 'type' : 'iframe'
			
		 }); 
	
	}

}

CheckCookie = function()
{
	var href = window.location.href;
	if ((href == 'http://stylebytyra.se.melissa.askasdrift.se/') || (href== 'http://stylebytyra.askasdrift.se/') || (href== 'http://www.stylebytyra.se/'))
	{
	return true;
	}
	return false;
	
}

