// Initialize jQuery
jQuery(document).ready( function($) {
	// ACTIVE TABS
	var classname = $('#main > div:first').attr('class');
	$('#nav').find('li#nav_'+classname).addClass('active');

	// OVERLABEL
	// http://scott.sauyet.com/Javascript/Demo/Overlabel/
	$("label.overlabel").overlabel();

	// Cufon **Must be after the active tab script to work if cufon is used in the nav
	Cufon.replace("h1, h2, h3, #home_twitter, .best_deal a, .click_inner p, .small_green_font");
	Cufon.replace('.nav a', {
		hover: true
	});
});

jQuery(window).load( function($) {
	var $ = jQuery;

	// match heights
	leftHeight = $(".col_220").height();
	rightHeight = $(".col_244").height();

	if (leftHeight < rightHeight) {
		$(".col_220").height(rightHeight);
	}
	else {
		$(".col_244").height(leftHeight);
	}
});




























