//Call function when the dom is ready
jQuery(document).ready(function($) {

// content-left navigation
	$("#dropmenu li:has(ul)").addClass("hasChild");
	$("#dropmenu li").wrapInner("<span></span>");

// odd & even
	$("#content-center .block-large:has(.post):even").addClass("even");
	$("#content-center .block-large:has(.post):odd").addClass("odd"); 

// EQUAL HEIGHTS
	//$("body.home #content-center .block-large .post").equalHeights();

// thickbox gallery
	$('.gallery .gallery-icon a').addClass('thickbox');
	$('a.thickbox').attr('rel','gallery-thickbox');

// end	
});

