$(document).ready(function() {

	$('.socials a').each(function(index, element) {
	  $(element).click(function (){
	     $.post('/stats/index.php?q='+encodeURIComponent(element));
	  });
	});
 
    var ua = navigator.userAgent;
    var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
    var version;

    if (re.exec(ua) != null)
      version = parseFloat( RegExp.$1 );

 
    //logo animation
    if(version >= 8 || !version ){
        $('#logogrey').fadeOut(3000);
        $("#slogan").animate({"left": "+=483px"}, "12000");
    }
    
    //banner animation
    if(version >= 7 || !version){
        $("#bannermain").hover(function(){ 
        	$(this).animate( { backgroundColor: '#ff0000' }, 1000);
            $(this).animate( { backgroundColor: '#5984a0' }, 2000);
        });
    } 
 
});

