/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){

    var g = $("#header.hide");
    $("#header.hide").hover(function(){
	    g.clearQueue();
	    g.animate({
		opacity: '1',
		top:'0'
	   },300)
       },function(){
	   g.clearQueue();
	   g.animate({
	       opacity: '0.45',
	       top:'-45'
	   },300);
	})

	/*** modal dialog ***/

	$('a.log_in').click(function(e){
	   e.preventDefault();
	   var marginleft = $('#logIn').width()/2;
	   var marginleft = marginleft+50;
	   $('#logIn').css('margin-left', -marginleft);
	   $('#logIn').css('display', 'block');
	})

	$('#logIn button[value]="cancel"').click(function(){
	    $('#logIn').css('display', 'none');
	})

	/*** // ***/

        $('#searchTxt').focus(function(){
            $(this).val('');
        })


	/*** change city ***/

	/*** // ***/
     
});
