//add jquery acrions to specific elements on the page
//must be called after page is created


$(document).ready(function() 
{ 
	
	$("a.g01").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity': 0.8 });
	$("a.g02").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'overlayOpacity': 0.85 });
	$("a.g03").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'frameWidth': 670, 'frameHeight': 430, 'overlayOpacity': 0.85 });
	$("a.v01").fancybox({ 'zoomSpeedIn': 0, 'zoomSpeedOut': 0, 'overlayShow': true, 'frameWidth': 780, 'frameHeight': 510, 'overlayOpacity': 0.85 });
	
});


$(function() {
	$('ul.hover_block li').hover(function()
	{
		$(this).find('img').animate({top:'120px'},{queue:false,duration:500});
	}, 
	function()
	{
		$(this).find('img').animate({top:'0px'},{queue:false,duration:500});
	});
	
});
