$(document).ready(function(){ 
        $(".sidebar_box").corner();
		$(".sidebar_box ul").corner();
		
		$("#brands h4").corner("top 5px");
		$("#section h4").corner("top 5px");
		
		
		$("#condition").corner();
		$("#round_cart").corner();
		$("#search_filter").corner();
		
		
		$(".box_outer").corner();
		
		$("#box_contents").corner();
		
		$(".box_inner").corner("top");
		
		$('#s').val("Search Here...");
		
        $('#s').focus(function() {
		$value = $(this).val();
            if($(this).val()=="Search Here..."){
               $(this).val("");
            }
       }).blur(function(){
            if($(this).val()=="") {
               $(this).val("Search Here...");
            }
       });
	
// starting tooltip
imagePreview();

});


