// JavaScript Document

$(document).ready(function(){
	
function setqb()
				{
					$("#qbox").load("cmbox.php");
				}
				
	setqb();
	
$("#txtsearch").focus(function (){ 		
//alert($(this).val());
if($(this).val()==" Enter Keywords to Search")
		{
			$(this).val("");	
		}
});	
 
 $("#txtsearch").blur(function (){ 		
//alert($(this).val());
	if($(this).val()=="")	
	{
		$(this).val(" Enter Keywords to Search");							
	}
});	
	
	
$(".pfolio  .folio").hover(function(){
								
 $(".toptp").hide("fast");							 

$(this).next(".toptp").fadeIn("fast");
});	


$(".clos").click(function(){
 $(".toptp").hide("fast");							 
});	


$(".toptp").mouseout(function(){
$(this).hide("fast");							  
});
	
});

