jQuery(document).ready(function(){
		// initialize scrollable
		jQuery(".scrollable").scrollable({circular: true}).autoscroll(5000);
	});
		//divided into columns
	function setEqualHeight(columns)
		{
			var tallestcolumn = 0;
			columns.each(
			function()
			{
				currentHeight = jQuery(this).height();
				if(currentHeight > tallestcolumn)
				{
					tallestcolumn  = currentHeight;
				}
			});
			columns.height(tallestcolumn);
		}		
		jQuery(document).ready(function() {
		setEqualHeight(jQuery("ul.featureditems  > li.featureditem"));

	jQuery('#header .current_page_item a:first, #footer .current_page_item a:first').addClass('current');
	jQuery('#vplaylist img').click(function(){
		var videoToPlay = 'http://www.youtube.com/embed/' + jQuery(this).attr('rel')+'?autoplay=1';
		jQuery('#vplayer-container iframe').attr('src', videoToPlay);
	});
	jQuery('#submitMainForm').click(function(){
		jQuery('#mainForm').submit();
	});



});

