//href change
$(document).ready(function(){
	$(".slide .small").click(function(){$(this).children('a').click()})
	$(".slide #big").click(function(){$(this).children('a').click()})

	$(".sk_2_0 .image_round").click(function(){
		top.location.href=$(this).prev('a').attr('href');
//		alert(top.location.href=$(this).prev('a').attr('href'));
	});
	$("a.gallery").fancybox();
	
	document.onkeydown = NavigateThrough;

});

function NavigateThrough (event)
{
	switch (event.keyCode ? event.keyCode : event.which ? event.which : null)
	{
		case 0x25:
			if($(".navigation .prev").length>0)
				{
					top.location.href=$(".navigation .prev").attr('href');
				}
			break;
		case 0x27:
			if($(".navigation .next").length>0)
				{
					top.location.href=$(".navigation .next").attr('href');
				}
			break;
	}
}

