$(document).ready(function() {
	
	$(".tweet").tweet({
	    join_text: "auto",
	    username: "sallyanthony",
	    avatar_size: 48,
	    count: 1,
	    auto_join_text_default: "Sally said,",
	    auto_join_text_ed: "Sally",
	    auto_join_text_ing: "Sally was",
	    auto_join_text_reply: "Sally replied",
	    auto_join_text_url: "Sally was checking out",
	    loading_text: "loading tweets..."
	});

	var hide = false;
	//Add Tweets
	//$("#twitterHover").hide();
	//$("#fbHover").hide();
	//$("#fbframe").contents().find(".fb_edge_widget_with_comment span.fb_send_button_form_widget.dark .FB_Loader").css("background","#BADA55");
	    
	/*$('.twitterSocial').hover(function() {
		$("#fbHover").hide();
		if (hide) clearTimeout(hide);
		$("#twitterHover").fadeIn(200);
	}, function() {
		hide = setTimeout(function() {$("#twitterHover").fadeOut(200);}, 250);
	});
	$("#twitterHover").hover(function(){
		$("#fbHover").hide();
        if (hide) clearTimeout(hide);
    }, function() {
        hide = setTimeout(function() {$("#twitterHover").fadeOut(200);}, 250);
    });
    
    $('.fbSocial').hover(function() {
    	$("#twitterHover").hide();
		if (hide) clearTimeout(hide);
		$("#fbHover").fadeIn(200);
	}, function() {
		hide = setTimeout(function() {$("#fbHover").fadeOut(200);}, 250);
	});
	$("#fbHover").hover(function(){
		$("#twitterHover").hide();
        if (hide) clearTimeout(hide);
    }, function() {
        hide = setTimeout(function() {$("#fbHover").fadeOut(200);}, 250);
    });*/
    
    //Slide Music Player
    
    $('.musicplayerbtn').toggle(function() {
		$('#music').animate({right: '0px'});
	}, function() {
		$('#music').animate({right: '-400px'});
	});
	
	$(".topSocialLinks li a").tipTip();
    
});

