$(function(){ 
	if ($("#flash-replacement").length != 0) {
		swfobject.embedSWF("flash/your_flash.swf", 
		"index-flash-replacement", 
		"462", "314", "8.0.0", 
		"flash/expressInstall.swf", 
		{}, 
		{menu: "false",quality: "high",wmode: "transparent"}, 
		{});
	}
	
	/* equal columns height */
	var side_bar_holder = $("#side-bar-holder"),
		content_holder = $("#content-holder"),
		side_bar = $("#side-bar"),
		content = $("#content"),
		corners_height = 36,
		shift = 340;
	if ($("body").hasClass("home")) {
		if (side_bar_holder.height() > content_holder.height() + shift) {
			content_holder.height(side_bar_holder.height() - shift);
		} else {
			side_bar_holder.height(content_holder.height() + shift);
			
		}
	} else {
		side_bar_holder.height() > content_holder.height() ? 
				content_holder.height(side_bar_holder.height()) : 
				side_bar_holder.height(content_holder.height());
	}
	side_bar.height(side_bar_holder.height() - corners_height);
	content.height(content_holder.height() - corners_height);
	
	/* main logo mouseover */
	var pos = 0,
		logo = $(".main-logo", "#header");
	logo.mouseover(function(){
		pos -= 114;
		if (pos == -456) {pos = 0}
		$(this).children("img").css({
			top: pos + "px"
		});
	});
});