jQuery(document).ready(function(){
	
	jQuery('.project').each(function(){
		var service = jQuery(this).find('.project-services');
		
		jQuery(this).find('.project-tnail').hover(
			function(){
				jQuery(service).show();
			},
			function(){
				jQuery(service).hide();
			}
		);
		
		jQuery(this).find('.project-links-moreinfo a').click(function(){
			jQuery(service).SlideToggleLeft(250);
			return false;
		});
		
	});
	
	
});

