// JavaScript Document

$(document).ready(function() {

	$('.btn-holder').hover(function(){
		$(this).children('img.btn-icon').stop(true, true).animate({
		  'width':'117px',
		  'height':'80px',
		  'top':'12px',
		  'left':'14px'
		})
	}, function() {
		$(this).children('img.btn-icon').stop(true, true).animate({
		  'width':'107px',
		  'height':'70px',
		  'top':'17px',
		  'left':'19px'
		})
	});
	
	$(".click-content").hide();
	$(".click-up").hide();
	
	$(".click-down").click(function(){
		$(".click-events").hide();
		$("#networking-events-box").animate({'height': '115px'}, 500);
		$(".click-expand").animate({'marginTop': '97px','background-position': '0px -18px'}, 500);
		$(".click-content").fadeIn();
		$(".click-down").hide();
		$(".click-up").show();
	});
	
	$(".click-up").click(function(){
		$("#networking-events-box").animate({'height': '18px'}, 500);	
		$(".click-expand").animate({'marginTop': '0px','background-position': '0px 0px'}, 500);
		$(".click-content").hide();
		$(".click-events").fadeIn();
		$(".click-up").hide();
		$(".click-down").show();
	});
});