$(document).ready(function(){
	$("div.offer").hover(function() {
		if ($(this).children("a").size() >= 1) {
			$(this).css("background","#ffffff");
		}
	}, function() {
		if ($(this).children("a").size() >= 1) {
			$(this).css("background","#ebebe8");
		}
	});
	
	 // Default Form Values
				
				$("#login input:text, #login input:password").focus(function() {
					defaultval = $(this).attr("value");
					this.value = '';
				});
				$("#login input:text, #login input:password").blur(function() {
					if (this.value == '') {
						this.value = defaultval;
					}
				});
});


function launch(url) {
	popupWin = window.open(url,"_new","toolbar=no,height=670,width=580,location=no,address=no,directories=no,status=no,scrollbars=1,resizable=yes,menubar=no,copyhistory=true"); 
}
