jQuery(function() {
	if (jQuery.browser.msie()) {
		jQuery('.link').css({backgroundPosition: '0 0'});
		jQuery(".link").hover(function(){
			jQuery(this).animate(
				{backgroundPosition: '(0px -50px)'},
				{easing: 'bounceout'},100 );
			}, function() {
				jQuery(this).stop().animate({
				backgroundPosition: '(0px 0px)'}, 150 );
		});	
	} 
	else {
		jQuery('.link').css({backgroundPosition: '0px 0px'});
		jQuery(".link").hover(function(){
			jQuery(this).animate(
				{backgroundPosition: '(0px -50px)'},
				{easing: 'bounceout'},100 );
			}, function() {
				jQuery(this).animate({
				backgroundPosition: '(0px 0px)'}, 150 );
		});
	}
});

window.onload=function(){
Nifty("div#h_main", "big transparent bottom same-height");
Nifty("div#p_main", "big transparentbottom same-height");
Nifty("div#b_main", "big transparent same-height");
Nifty("div#page", "big transparent same-height bottom right");
}
	

