function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = "";
	}
}
function doDefault(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
	}
}

$(document).ready(function(){
	var widgets = $(".widgets");
	var opclose = $(".opclose");
	
	widgets.animate({
		bottom: "0px"
	}, 1500 );
	
	opclose.click(function(){
		
		var className = opclose.attr('className');
			if(className!='opclose close'){
				widgets.animate({bottom: "-98px"}, 800 );
				opclose.addClass("close");
			}
			if(className=='opclose close'){
				widgets.animate({bottom: "-98px"}, 800 );
				opclose.removeClass("close");
				widgets.animate({bottom: "0px"}, 600 );
			}	
	});
	

		var banners2 = $("#bbpad img li");
		banners2.mouseover(function () {
			$(this).animate({marginTop: "-2px"}, 50 );
		});
		
		banners2.mouseout(function () {
			$(this).animate({marginTop: "2px"}, 50 );
		});
	
});

function fullscreen() {
	alert('ping');
}
