// Homepage Video Hover effect 





$(document).ready(function() {

	$("a#mainImg span.rollover").css({'opacity':'0'});

	

	$('div#main a#mainImg').hover(

		function() {

			$(this).find('span.rollover').fadeTo(500, 1);

		},

		function() {

			$(this).find('span.rollover').fadeTo(200, 0);

		}

	);

});







// Training Video effect

$(document).ready(function(){ 

	$('object#DC100').hide();

 	

  $('a#trainingVid').click(function () {

 		if ($("object#DC100").is(":hidden")) {

	  	$('object#DC100').slideDown("slow");

	 		return false;

	 	}

	 	else {

	  	$('object#DC100').fadeOut("fast");

	 		return false;

	 	}

  });

});





// Removes last  <hr> on section pages 

$(document).ready(function(){

	if($('.categoryItem').length > 0){

		$('.contentHr:last').remove();

	}

});



// Add Thickbox class to video clips 

$(document).ready(function(){

	if($('h2').html() == 'Videos'){

		$('img.categoryImg').parent().addClass('thickbox');

		$('a.smallButton').addClass('thickbox');

	}

});

// Multiple Galleries
$('ul.galley').onfocus(function(){		
		$('.galleria_wrapper').remove();										 
		$(this).show().galleria(galleria_options);
});