$(document).ready(function(){
	/*
	if (!Modernizr.textshadow) {
		$('.homepage h1, .homep p').textshadow();
	} */
	// preload img
   preload_image = new Image(25,25); 
   preload_image.src="/wp-content/themes/finncatering/images/nosto_arrow_hover.png"; 
	
	$('.tuotesivu .product:nth-child(3n+2)').css('margin-right', 0);

	var loadstuff, lurl, lbcontent;
	$.ajaxSetup({cache:false});

	$(".productHREF").click(function(e) {
		e.preventDefault();
		lurl = $(this).attr('href');
		var randomness = "?rand="+Math.round(Math.random()*999999);

		$.ajax({
			type: 'get',
			url: lurl,
			data: {},
			dataType: "text",
			cache: false,
			success: function (data) {
				$(".dummyholder").html($(data).find(".tuoteholder"));
				lbcontent = $(".dummyholder").html();
				//$(".dummyholder").append('<div class="tuotelink">'+lurl+'</div>');
				//alert(lbcontent);
				$.colorbox({html: lbcontent +'<a href="'+lurl+'"class="tuote_permalink">Linkki tuotteeseen</a>' +
													'<span class="copymsg" >Linkki kopioitu leikep&ouml;yd&auml;lle</span>',
					scrolling: false,
					onComplete: function() {
						$(".tuote_permalink").zclip({
							path:'/wp-content/themes/finncatering/scripts/ZeroClipboard.swf',
							copy: $(".tuote_permalink").attr('href'),
							beforeCopy:function() {
								//alert("beforeCopy");
								//$(".tuote_permalink").css('background-color','orange');
								$('.copymsg').hide();
							},
							afterCopy:function() {
								//alert("afterCopy");
								//$(".tuote_permalink").css('background-color','transparent');
								$('.copymsg').show().delay(2000).fadeOut();
							}
						});
					}
				});
				$('.tuote_permalink').live('click', function(e) {
					e.preventDefault();
				});
			}
		});
	});
	
	$('.dropdown1 ul li.drop_first, .dropdown2 ul li.drop_first').removeClass('drop_first_hover').addClass('drop_first_default');
	$('.dropdown ul ul li:last-child').css('background','url(/wp-content/themes/finncatering/images/dropdown_bottom.png) no-repeat;');
	$('.dropdown1 ul li, .dropdown1 ul li').hover(function() {
		//$('.dropdown1 ul>li').hide();
		$('.dropdown1 ul li.drop_first').addClass('drop_first_hover').removeClass('drop_first_default');
		$('.dropdown1 ul ul li').show();
	},
	function() {
		//$('.dropdown1 ul>li').show();
		$('.dropdown1 ul li.drop_first').removeClass('drop_first_hover').addClass('drop_first_default');
		$('.dropdown1 ul ul li').hide();
	});
	
	$('.dropdown2 ul li, .dropdown2 ul li').hover(function() {
		//$('.dropdown2 ul>li').hide();
		$('.dropdown2 ul li.drop_first').addClass('drop_first_hover').removeClass('drop_first_default');
		$('.dropdown2 ul ul li').show();
	},
	function() {
		//$('.dropdown2 ul>li').show();
		$('.dropdown2 ul li.drop_first').removeClass('drop_first_hover').addClass('drop_first_default');
		$('.dropdown2 ul ul li').hide();
	});
	
	$('img[title]').removeAttr('title');

});
