/* Author: 

*/

jQuery(document).ready(function() {
				$('#countdown_dashboard').countDown({
					targetDate: {
						'day': 		24,
						'month': 	1,
						'year': 	2012,
						'hour': 	0,
						'min': 		0,
						'sec': 		0					},
						omitWeeks: true,
						// onComplete function
						onComplete: function() { 
							$('.dash').hide();
							$('.finish_text').slideDown(250); 
						}
				});								
			});
