/**
 * --------------------------------------------------------------------
 * Misc sitewide scripts
 * --------------------------------------------------------------------
 */
/*
$(document).ready(function(){
	
	$("img.dude").addClass('caption');
	
});

*/

$(document).ready(function(){	
	
	
	// Featured area Slider
	$("#slider").easySlider({
		auto: true,
		continuous: true,
		lastShow: false,				
		vertical: true,
	});
	
	
	// Featured area Slider
	$("#feature .view").easySlider({
		auto: true,
		continuous: true,
		lastShow: false,				
		vertical: true,
		controlsFade: true,
		pause: 13000,
	});
	
	
	// Related post-items thumbnails fade in on hover
	$(".relatedposts img").fadeTo("50", 0.5); 

		$(".relatedposts img").hover(function(){
		$(this).fadeTo("100", 1.0); 
	
		},function(){
		$(this).fadeTo("10", 0.5);
	});

/*
	 // Hides title on hover for all thickbox links
	 var thickbox_links = $('a.thickbox');
	 // On mouse hover
	 thickbox_links.hover(
	     // In: Store and remove title
	     function() {  
	         old_title = $(this).attr('title');      
	         $(this).attr('title','');
	     },
	     // Out: Replace title
	     function() {  
	         $(this).attr('title', old_title);  
	     }
	 );  
*/	
	
	
});

