$(document).ready(function(){
   // SUBMENUS
   $('li.current_page_parent ul.children').show();
   $('li.current_page_item ul.children').show();
   $('li.current_page_item').parent('ul').show();
   
   //SHOW FACEBOOK
    $(".next").click(function() {
		  $("ul#project-list").slideToggle(); },
		 function() {
		  $("ul#project-list").slideToggle();
		 }
	);
   
   //ROLLOVERS
   $(".hover img").hover(function() {
		  this.src = this.src.replace(".png","_over.png"); },
		 function() {
		  this.src = this.src.replace("_over.png",".png");
		 }
	);
   
   //CYCLE
   
   $(".home-slideshow").cycle({ 
    timeout: 3000 ,
    speed: 500,
});
   
 });

