//Check what browser is being used.
var browser = navigator.appName;

//no conflict jquery 
jQuery.noConflict();

jQuery(document).ready(function(){  
	
	var contentHeight = jQuery("#vg_content").height();
	jQuery("#content_sides").css("height", contentHeight - 84);
	jQuery("#content_left").css("height", contentHeight);
	//alert(contentHeight);
	
	/**
	 * Rotates sponsors logos in bottom right corner of page
	 * Loops through sponsors for continuous flow
	 */
	jQuery(".sponsor-rotator").jCarouselLite({
		auto: 2500,
		speed: 1500,
		visible: 1,
		easing: "backinout"
	});
	
});
