$(document).ready( function()
{
	$("#q").focus(function()
        {
        	if (this.value == 'Enter search term...') this.value ='';
		});

        $("#q").blur(function()
        {
        	if (this.value == '') this.value ='Enter search term...';
		});	
});

$(document).ready( function()
{


$(function() {
	$('#maincat').change(function(){
		$.ajax({
			url: ('/_layout/select_en.html'),
			data: 'pid=' + $(this).val(),
			type: 'GET',
			success: function(data){
				$('#subcat-content').html(data)
				}		
			});
		});
	});
});
