$(document).ready(function(){
	$("#div.slideshow").css("z-index","1");
	$('div.slideshowimages').before('<div id="nav" style="z-index:1100;position:absolute; margin-top: 220px; margin-left: 510px;">').cycle({
		/* fx: 'scrollLeft', */
		fx: 'fade',
		timeout: 5000,
		speed: 'slow', 
		pager:  '#nav' 
	});
	$("#nav").css("top","0px");
	$("#nav").css("left","0");
	
	$("div.slideshowimages img.roller.link").click(function(){ window.location = $(this).attr("url"); });
	$("div.slideshowimages img.roller.link").css("cursor","pointer");  
	  
	// Tabs
	$('#tabs').tabs();
	
	//hover states on the static widgets
	$('#dialog_link, ul#icons li').hover(
		function() { $(this).addClass('ui-state-hover'); }, 
		function() { $(this).removeClass('ui-state-hover'); }
	);


	
			
	
	// Produkt - billede visning
	$("#image_selector #thumbwrapper img").click(function(){
		var img_rel = $(this).attr("rel");
		var img_color = $(this).attr("colorname");
		if(img_rel != ""){
			$("#image_selector #largewrapper img").attr("src","/userfiles/image/produkter/"+img_rel);
		}
		if(img_color != ""){
			$("#image_selector #colorname").html(img_color);
		}
	});
}); 
 	