$(function(){
		  
	$('.voidekuva').hover(function(){
		$(this).children('.info_popup').show();
		$(this).css('z-index', '333');
	},function(){
		$(this).children('.info_popup').hide();
		$(this).css('z-index', '20');
	});
	
	/*
	$('.voidekuva > img').css({'left': '50%', 'margin-left':
				function(index) {
					return -$(this).width() * 0.5;
				}
	});
	*/
	
	
	$('.voidekuva > img').each(function(index){
	
		$(this).parent().width() = $(this).width();
	
	});
	
	
	$('.artikkelit_navi_element').click(function() {
		window.location.href= $(this).attr('id') + '.html';
	});
	
	$('.main_navi_element').hover(function(){
		$(this).addClass('hover');
	},function(){
		$(this).removeClass('hover');
	});
	
	$('#valintaopas_tuotteet_control_kosteuttavat').click(function() {
		$('.valintaopas_tuotteet_perusvoiteet').hide();
		$('#valintaopas_tuotteet_kosteuttavat').show();
		$('#valintaopas_tuotteet_control_kosteuttavat').addClass("valintaopas_tuotteet_control_kosteuttavat_valittu");
		$('#valintaopas_tuotteet_control_hoitavat').removeClass("valintaopas_tuotteet_control_hoitavat_valittu");
		$('#valintaopas_tuotteet_control_erikois').removeClass("valintaopas_tuotteet_control_erikois_valittu");
	}).click();
	
	$('#valintaopas_tuotteet_control_hoitavat').click(function() {
		$('.valintaopas_tuotteet_perusvoiteet').hide();
		$('#valintaopas_tuotteet_hoitavat').show();
		$('#valintaopas_tuotteet_control_hoitavat').addClass("valintaopas_tuotteet_control_hoitavat_valittu");
		$('#valintaopas_tuotteet_control_kosteuttavat').removeClass("valintaopas_tuotteet_control_kosteuttavat_valittu");
		$('#valintaopas_tuotteet_control_erikois').removeClass("valintaopas_tuotteet_control_erikois_valittu");
	});
	
	$('#valintaopas_tuotteet_control_erikois').click(function() {
		$('.valintaopas_tuotteet_perusvoiteet').hide();
		$('#valintaopas_tuotteet_erikois').show();
		$('#valintaopas_tuotteet_control_erikois').addClass("valintaopas_tuotteet_control_erikois_valittu");
		$('#valintaopas_tuotteet_control_hoitavat').removeClass("valintaopas_tuotteet_control_hoitavat_valittu");
		$('#valintaopas_tuotteet_control_kosteuttavat').removeClass("valintaopas_tuotteet_control_kosteuttavat_valittu");
	});
});

function show_tuote_etusivu() {
	$('.tuotteet_oikea').hide();
	$('.tuote_etusivu').show();
	$('.sub_navi_element a').removeClass('selected');
}

function show_tuote_koostumus() {
	$('.tuotteet_oikea').hide();
	$('.tuote_koostumus').show();
	$('.sub_navi_element a').removeClass('selected');
	$('.navi_tuote_koostumus').addClass('selected');
}

function show_tuote_kenelle() {
	$('.tuotteet_oikea').hide();
	$('.tuote_kenelle').show();
	$('.sub_navi_element a').removeClass('selected');
	$('.navi_tuote_kenelle').addClass('selected');
}

jQuery.preloadImages = function() {
	for(var i = 0; i<arguments.length; i++) {
		jQuery("<img>").attr("src", arguments[i]);
	}
}
