$(document).ready(function(){
	
	// Popup Window
	$('a.pop').click(function(){
		window.open(this.href,"_blank","width=970,height=751,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0");
		return false;
	});
	
	//Follow Us On
	$('.followUsOnLink').click(function(){
	$('#followUsOn').delay(100).animate({
    height: "167px",
		top: "-135px" 
		}, 300, 'swing', function() {		
    $('.followUsOnLink').addClass('hidden');
		});
	});
	
	$('.followUsOnLinkClose').click(function(){
	$('#followUsOn').delay(100).animate({
    height: "32px",
		top: "0px" 
		}, 200, 'swing', function() {		
    $('.followUsOnLink').removeClass('hidden');
		});
	});
	
		
});	

