	$(document).ready(function() {
	
	//Upper right corner call-outs
	$('.outer_social_icon').mouseenter(
	function() {
	  $('.socialnetwork').animate({ width: '180px'}, 1000, function() {});
	  $('.social_link').css({display: 'block',width: '120px'});
	  
	});
	
	$('.outer_social_icon').mouseleave(
	function() {
	  $('.socialnetwork').animate({ width: '40px'}, 1000, function() {});
	  //$('.social_link').css({display: 'none'});
	});
	
	$('.top_button ul li a.blue').click(
	function() {
	  $('#blue_exp').css({display: 'inline'});
	  $('.top_button ul li a.blue').animate({marginTop: '110px'}, 1000, function() {});
	  $('#blue_exp').animate({height: '110px'}, 1000, function() {});

	});
	$('#blue_exp').mouseleave(
	function() {
	  $('#blue_exp').animate({height: '0px'}, 500, function() {});
	  $('.top_button ul li a.blue').animate({marginTop: '0px'}, 500, function() {});

	});
	$('.top_button ul li a.green').click(
	function() {
	  $('#green_exp').css({display: 'inline'});
	  $('.top_button ul li a.green').animate({marginTop: '110px'}, 1000, function() {});
	  $('#green_exp').animate({height: '110px'}, 1000, function() {});

	});
	$('#green_exp').mouseleave(
	function() {
	  $('#green_exp').animate({height: '0px'}, 500, function() {});
	  $('.top_button ul li a.green').animate({marginTop: '0px'}, 500, function() {});

	});
	$('.top_button ul li a.red').click(
	function() {
	  $('#red_exp').css({display: 'inline'});
	  $('.top_button ul li a.red').animate({marginTop: '110px'}, 1000, function() {});
	  $('#red_exp').animate({height: '110px'}, 1000, function() {});	  

	});
	$('#red_exp').mouseleave(
	function() {
	  $('#red_exp').animate({height: '0px'}, 500, function() {});
	  $('.top_button ul li a.red').animate({marginTop: '0px'}, 500, function() {});

	});
	
	//Fancybox Controls

	$(".quoteurl").fancybox({
	       			'width'				: '85%',
					'height'			: '85%',
					'autoScale'			: false,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe'
	});
	$(".chaturl").fancybox({
	       			'width'				: '85%',
					'height'			: '85%',
					'autoScale'			: false,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe'
	});
	$(".videourl").fancybox({
	       			'width'				: 750,
					'height'			: 450,
					'autoScale'			: false,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe'
	});
	
	$(".newsurl").fancybox({
	       			'width'				: '92%',
					'height'			: '92%',
					'autoScale'			: false,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe'
	});
	$(".pkgurl").fancybox({
	       			'width'				: '92%',
					'height'			: '92%',
					'autoScale'			: false,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe'
	});
	$("a[rel='portfolio']").fancybox({
	       			'width'				: '99%',
					'height'			: '99%',
					'autoScale'			: false,
					'transitionIn'		: 'none',
					'transitionOut'		: 'none',
					'type'				: 'iframe',
					'scrolling'   : 'no'
	});
	
	

	// Tweet Function
	$(".tweet").tweet({
        username: "alt_creative",
        join_text: "auto",
        avatar_size: 0,
        count: 1,
        auto_join_text_default: "we said,",
        auto_join_text_ed: "we",
        auto_join_text_ing: "we were",
        auto_join_text_reply: "we replied to",
        auto_join_text_url: "we were checking out",
        loading_text: "loading tweets..."
    });
    
    
    
    //Sidebar Call-out Slideshow
    	
	$('#slideshow').innerfade({
	animationtype: 'fade',
	speed: 'normal',
	timeout: '6000',
	type: 'sequence'
	});
	
	
	
	});

