jQuery(document).ready(function(){ 
	// menu hover
	jQuery(".containerMenu LI, .featuresBanner").hover(function(){
	  jQuery(this).addClass("hover");
	},function(){
	  jQuery(this).removeClass("hover");
	});
	
	// Portfolio Heading
	jQuery(".contentRight H2.references").wrap("<div class='wrapper'></div>");
	
	// removes BR between input & button
	jQuery(".contentRight FORM BR").remove();
	
	// clears FORM elements
	jQuery(".contentRight FORM").after("<div class='cleaner' style='height:10px;'></div>");
	
	// adds 1px line after post
	jQuery(".contentMain .post").after("<div class='separator2'></div>");
	
	// adds 1px line after post
	jQuery(":submit").addClass("submit");
	
	// lightbox trigger
	jQuery(function() {
		jQuery(".lightBox").lightBox();
	});
	
});

