$(document).ready(function(){
//Hide the tooglebox when page load
$(".togglebox").hide(); 
//slide up and down when hover over heading 2
$("h2").hover(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".togglebox").slideToggle("slow");
return true;
});


	//Hide (Collapse) the toggle containers on load
	$("#togglebox1").hide(); 

	//Slide up and down on hover
	/*$("#moreBoxdiv").click(function(){
		$("#doodo").attr('src',"images/web-design-portfolio-india.gif");
		    //$('img#doodo').fadeOut('fast');
		    $('img#doodo').attr('src','images/india-design-logo.jpg');
		    $('img#doodo').fadeIn('fast');
		//$("#togglebox1").slideToggle("100");		
	});*/
	
	$("#moreBoxdiv").toggle(function() { 
			$("#toggleButton").attr('src',"images/india-graphic-designers-on.gif");
			$("#toggleButton").attr('title',"Reduce Text");
			$("#togglebox1").slideToggle("100");
		}, function() { 
			$("#toggleButton").attr('src',"images/india-graphic-designers.gif");
			$("#toggleButton").attr('title',"Click Here To Expand View");
			$("#togglebox1").slideToggle("100");
		}
	);

});
