$(document).ready(function(){
	$("div.offer").hover(function() {
		if ($(this).children("a").size() >= 1) {
			$(this).css("background-position","0px -403px");
		}
	}, function() {
		if ($(this).children("a").size() >= 1) {
			$(this).css("background-position","0px 0px");
		}
	});
	
	// 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=644,width=630,location=no,address=no,directories=no,status=no,scrollbars=1,resizable=yes,menubar=no,copyhistory=true"); 
}
