jQuery(document).ready(function($){

		

// TOP SEARCH 
$('#s').focus(function() {
		$(this).animate({width: "215"}, 300 );	
		$(this).val('')
});

$('#s').blur(function() {
		$(this).animate({width: "100"}, 300 );
		$(this).val('Type your Search');
});

//  Tool Tips 
$(function(){
$(".someClass").tipTip({maxWidth: "250px", edgeOffset: 10, fadeOut: "300", defaultPosition: "top",});

});



});<!-- end document ready -->








