﻿/**
* common.js
*
*
*
*/



$(function(){
	
	if($(".textField").val()){
			$(".textField").css("background","#333");
	}
	$(".textField").focus(function(){
		$(this).css("background","#333");
	});

/*	$(window).scroll(function(){
    	$("#footer").offset( { top: 'bottom' } );
		console.log($(window).height());
	});
*/

});

