// JavaScript Document
$(document).ready(function(e) {
	initMainDomElements();
    initMainPlugins();
	initMainHandlers();
});

function initMainDomElements() {
	//show all hidden images - this is a default for the case when jquery doesn't load correctly
	$('#headerSlider li').show();
}

function initMainPlugins(){
	$('#Slider').innerfade({
		speed: 'slow',
		timeout: 10000,//10 seconds
		containerheight: '200px',
		runningclass: 'clearfloat',
		type: 'random'
	});
}

function initMainHandlers() {
	/*** Post on MAIN page ***/
	var posts = $('.content .billboard .postArea .innerPost');
	posts.mouseover( function() {
		$(this).addClass('active');
	});
	posts.mouseout( function() {
		$(this).removeClass('active');
	});
}
