//CUSTOM SCRIPT FOR MATTS.biz
//Author: Brandammo
	
j(function(){
	
	/* hover events for enter site button */
	j('.hs_btn_container').hover(
		function(){
			j(this).find('.btn_entersite').stop().animate({'top' : '0px'},{duration:300, easing:'easeOutQuint'});
		},
		function(){
			j(this).find('.btn_entersite').stop().animate({'top' : '5px'},{duration:300, easing:'easeOutQuint'});
		}
	)
	
	j('#hs_lc_char').hover(
		function(){
			j(this).stop().animate({'left' : '-10px'},{duration:300, easing:'easeOutQuint'});
		},
		function(){
			j(this).stop().animate({'left' : '0px'},{duration:300, easing:'easeOutQuint'});
		}
	)
		
	j('#hs_wc_char').hover(
		function(){
			j(this).stop().animate({'top' : '10px'},{duration:300, easing:'easeOutQuint'});
		},
		function(){
			j(this).stop().animate({'top' : '0px'},{duration:300, easing:'easeOutQuint'});
		}
	)
	
	j('#hs_gs_char').hover(
		function(){
			j(this).stop().animate({'left' : '610px'},{duration:300, easing:'easeOutQuint'});
			j('.caption').slideDown('fast');
		},
		function(){
			j(this).stop().animate({'left' : '600px'},{duration:300, easing:'easeOutQuint'});
			j('.caption').slideUp('fast');
		}
	)
		
});
