// JavaScript Document
$(function(){
	$(".bdayh").stop().fadeTo(250, 1);
	$(".bdayh").hover(function(){$(this).stop().fadeTo(250, 0.6);},
	function(){$(this).stop().fadeTo(250, 1);});
	// bdayh fade
	
	$(".bdayh li a").stop().fadeTo(250, 1);
	$(".bdayh li a").hover(function(){$(this).stop().fadeTo(250, 0.6);},
	function(){$(this).stop().fadeTo(250, 1);});
	// bdayh fade	
	
	$('.gotop').click(function() {
		$('body,html').animate({scrollTop:0},500);
	});
	// bdayh gotop	
	
	$(".bdayhLink").hover(function() {
   	 $(this).stop().animate({ marginRight: "5px" }, 200);
    }
	,function(){
    	$(this).stop().animate({ marginRight: "0px" }, 200);
	});
	// bdayh link	
	// start links	
    $(".bdayhLinkss li").hover(function() {
        $(this).stop().animate({ marginTop: "-5px" }, 200), {duration: 'slow', easing: "easeOutElastic"};
    }
	,function(){
        $(this).stop().animate({ marginTop: "0px" },  200), {duration: 'slow', easing: "easeOutElastic"};
		
	});
	
	// bdayh links	
	// start links	
    $(".bdayhLinks2 a").hover(function() {
        $(this).stop().animate({ textIndent: "28px" }, 200);
    }
	,function(){
        $(this).stop().animate({ textIndent: "23px" }, 200);
	});
	// bdayh links	
	// start links	
	$(document).ready(function() {
		$('.bdayhLinks li').hover(function(event) {
		$(this).stop().animate({ marginTop: "-5px" }, {duration: 'slow',easing: 'easeOutElastic'});
		}
		,
		function(){
		$(this).stop().animate({ marginTop: "0px" }, {duration: 'slow',easing: 'easeOutElastic'});
		});
	
	});
	// end links
	// start links	
	$(document).ready(function() {
		$('.menuLinks li a').hover(function(event) {
		$(this).stop().animate({ textIndent: "20px" }, {duration: 'slow',easing: 'easeOutElastic'});
		}
		,
		function(){
		$(this).stop().animate({ textIndent: "15px" }, {duration: 'slow',easing: 'easeOutElastic'});
		});
	
	});
	// end links	
});
