( function($) {
$(document).ready(function() {

	// Change facebook icon
	$(".facebook").mouseover(function ()
	  {
	    $(this).addClass("fbColor");
	});

	$(".facebook").mouseout(function ()
	  {
	    $(this).removeClass("fbColor");
	});

	// Change twitter icon
	$(".twitter").mouseover(function ()
	  {
	    $(this).addClass("tColor");
	});

	$(".twitter").mouseout(function ()
	  {
	    $(this).removeClass("tColor");
	});
	
	//Countdown function
	//first number is month, last number is date
	// var ciffDay = new Date();
	// ciffDay = new Date(ciffDay.getFullYear() , 2 - 1, 5);
	// 
	// $('#countdown').countdown({
	// 	layout: '<ul><li>{dn}</li><li>{hn}</li><li>{mn}</li><li class="last">{sn}</li></ul>',
	// 	until: ciffDay
	// });
	
	// UTCDate(Hour, Year, Month, Date)
	$('#countdown').countdown({
		layout: '<ul><li>{dn}</li><li>{hn}</li><li>{mn}</li><li class="last">{sn}</li></ul>',
		until:  $.countdown.UTCDate(0, 2012, 2 - 1, 2)
	});
	
});
} ) ( jQuery );

