$(document).ready(function(){	
	$("#slider").easySlider({
		auto: false, 
		continuous: true
	});
});	

//$(document).ready(function(){
	// Accordion
//	$("#accordion").accordion({ 
//				header: "h3", 
// 				navigation: true	
//	});
//});

$(document).ready(function() {
	$("a[href$=.jpg],a[href$=.png],a[href$=.gif]").fancybox({
		'speedIn'		:	1000, 
		'speedOut'		:	200, 
		'overlayShow'	:	true,
		'titleShow'		: false
		
	});
});




$(document).ready(function() {
		$(function() {
			$('ul#grid li').hover(function(){
				$(this).find('div.slide').animate({top:'-120px'},{queue:false,duration:500});
			
								
			}, function(){
				$(this).find('div.slide').animate({top:'0px'},{queue:false,duration:500});
			
				
			});
		});
});