/*-- theme-script.js, if u want to customize the theme with some jQuery magic,
you can add ur function here inside the  $(document).ready(function()  :)
*/

 $(document).ready(function() {

   //Lazyloading the image
$("#home-content img, #single-content img").lazyload({
     effect      : "fadeIn"
 });   
 
//Initiate Superfish Dropdown Menu
 $('ul.sf-menu').superfish();  
 
 
//Initiate the toggle(show/hide) function for the Widget
   function toggleWidgets() {
	$('.sidebarWidget h3').addClass('plus');

	$('.sidebarWidget h3').click(function() {
		$(this).toggleClass('plus').toggleClass('minus').next().slideToggle(500);
	});

}
toggleWidgets();

      Cufon.replace('.post-title a,.single-post-title a, .sidebarWidget h3', { textShadow: '1px 1px 1px #E2EEF1', hover: true, });

	

   
   
 }); //End of  $(document).ready(function() 
	
	
	
		
		
