  jQuery(document).ready(function() {
    // Code that uses jQuery's $ can follow here.
		
	
		jQuery('.nocomplete').attr('autocomplete', 'off');
		jQuery('.nocomplete').attr('tabindex', '1');
		jQuery('.tab2').attr('tabindex', '2');
		//alertSize(); // used to be in body onload
	    // check on resize
	if(jQuery(window).width() < '1220'){
		jQuery('#divTopLeft').hide();
		}
    jQuery(window).resize(function() {
		//alertSize();
        if(jQuery(window).width() < '1220'){
			jQuery('#divTopLeft').hide();
		} else {
			jQuery('#divTopLeft').show();
		}
    });
	
	
	
	jQuery("#q0").val("לדוגמא תל אביב");
	jQuery("#q0").focus(function() {
		jQuery(this).css("color","black");
		jQuery(this).val("");
	});
	jQuery("#q1").val("לדוגמא הובלת דירות");
	jQuery("#q1").focus(function() {
		jQuery(this).css("color","black");
		jQuery(this).val("");
	});

	
	jQuery(".menubut").click(function() { //When trigger is clicked...
		jQuery(this).find("img").addClass("onit");
		//jQuery(".menubut").click(function() {
		if(jQuery(this).find("img").hasClass("onit")==true){
			jQuery(this).find("img").removeClass("onit"); // nothing blue 
			}
	});
	
	if(jQuery(".menubut").find("img").hasClass("onit")==true){
		jQuery(this).find("img").attr("src","http://www.sherut24.co.il/images/top_blue_click.jpg");
	}
	
});
