 $(document).ready(function(){
  	$("#searchbox").hide();
    $("#v_toggle").click(function () {$("#searchbox").slideToggle("slow");});
    
    $("#p2 , #p3 , #p4 , #p5").css("width", "69px");
    $("#p2 , #p3 , #p4 , #p5").children(".titlelink2").hide();
    
    jQuery.fn.contract = function() {
    	$(this).animate({
    		width: '69px'
    	}, 250);
    	$(this).children(".titlelink2").fadeOut();
    };
    
    jQuery.fn.expand = function() {
    	$(this).animate({
    		width: '630px'
    	}, 250);
    	$(this).children(".titlelink2").fadeIn();
    };
    
    $("#p1").hover(function (){
    	$(this).expand();
    	$("#p2 , #p3 , #p4 , #p5").contract();
    });
	
	$("#p2").hover(function (){
    	$(this).expand();
    	$("#p1 , #p3 , #p4 , #p5").contract();
    });

	$("#p3").hover(function (){
    	$(this).expand();
    	$("#p1 , #p2 , #p4 , #p5").contract();
    });

	$("#p4").hover(function (){
    	$(this).expand();
    	$("#p1 , #p2 , #p3 , #p5").contract();
    });
    
    $("#p5").hover(function (){
    	$(this).expand();
    	$("#p1 , #p2 , #p3 , #p4").contract();
    });

  });
