
$(function(){
	
	/** NAVIGATION */
	$(document).bind('keydown', 'right', function() {
        var url = $('.nextpostslink, a[rel="next"]').attr('href');
        if (url) {
            window.location = url;
        }
    });
    $(document).bind('keydown', 'left', function() {
        var url = $('.previouspostslink, a[rel="prev"]').attr('href');
        if (url) {
            window.location = url;
        }
    });
	
	/** _BLANK */
	$("a[href^='http:']:not([href*='" + window.location.host + "'])").each(function() {               
		$(this).attr("target", "_blank");
	});
	
	/** MIXLR */
	$("#mixlr").mouseenter(function() {
		$(this).animate({"right": "0px"});
	  }).mouseleave(function() {
		$(this).animate({"right": "-420px"});
	  });
	/** SLIDER */
	$('#twitter_update_list').bxSlider({
		mode: 'vertical',
		controls: false,
		auto: true,
		pause: 10000
	  });
	  
	/** CORNERS */
	$(".date").corner();
	
	/** FANCYBOX */
	$('a[href*=".jpg"]').fancybox();
	
	/** FACEBOOK */
	
});
