
	$j(function() {				
		
		$j('.video').hover(function(){
			this.className = this.className + ' hovered';
		},function(){
			this.className = this.className.replace(/\s*hovered/,'');
		}).click(function(e){
			var href = this.getElementsByTagName('a')[0].href;
			window.location = href;
		});
		
		$j('#headerCta').hover(function(){
			this.className = this.className + ' hovered';
		},function(){
			this.className = this.className.replace(/\s*hovered/, '');
		});
		
	});	
	
	