// JavaScript Document
$(document).ready(function(){
	$("#logo").click(function(){
		window.location = 'index.php';
	});
	
	$('#searchinput').focus(function() {
		var searchText = $(this).val();
		if (searchText=='SEARCH') {
			$(this).val('');
		}
		$(this).animate({
			width: 200
		}, {
			duration: 600	
		});
		$(this).removeClass('searchtext');
	}).blur(function() {
		var searchText = $(this).val();
		$(this).animate({
			width: 52
		}, {
			duration: 600	
		});
		if(searchText=='') {
			$(this).val('SEARCH');
			$(this).addClass('searchtext');
		}
	});
	
});
