// starting the script on page load
$(document).ready (function(){
	bannerAnimate();
	menuAnimate();
	windowsize();
});

this.windowsize = function() {
	if ($(window).height() < 800) {
		$("#marlofer_banner").css({'bottom' : '-115px'});
		$("#miliar_banner").css({'bottom' : '-125px'});
		$("#promo_banner").css({'bottom' : '-185px'});
	}
};

this.bannerAnimate = function(){
	
	$("a.banner").hover(
		function() { 
			$(this).animate({"bottom": "+=60px"}, "slow"); 
		},
		function() {
			$(this).animate({"bottom":"-=60px"}, "slow");
		}
	);
	
	$("#galery_banner").hover(
		function() { 
			$(this).animate({"top": "+=30px"}, "slow"); 
		},
		function() {
			$(this).animate({"top":"-=30px"}, "slow");
		}
	);	
};

this.menuAnimate = function(){	
	$("dt.menulnk").hover(
		function() { 
			$(this).animate({"left": "+=20px"}, 250);
			$("a", this).css("color","#FFEE88");
		},
		function() {
			$(this).animate({"left":"-=20px"}, 250);
			$("a", this).css("color","#FFD600");
		}
	);
};
