$(document).ready(function(){ 
	$(document).pngFix(); 
}); 

$(function() {
	$('ul.hover_block1 li').hover(function()
	{
		$(this).find('img').animate({top:'50px'},{queue:false,duration:500});
	}, 
	function()
	{
		$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
	});
	
});

$(function() {
    $('#slide1').cycle({ 
	    fx:     'scrollVert', 
    	prev:   '#prev1', 
    	next:   '#next1', 
	    speed:    500, 
    	timeout:  5000
	});
});

$(function() {
    $('#slide2').cycle({ 
	    fx:     'scrollHorz', 
    	prev:   '#prev1', 
    	next:   '#next1', 
	    speed:    500, 
    	timeout:  10000
	});
});

$(function() {
	$('ul.hover_block2 li').find('img').css({top:'50px'});
});


$(document).ready(function() {
	$("a.g01").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity': 0.85 });
});



