$(document).ready(function(){
    // Setup been busy popups
	$('.cell').beenbusy({width:"787px", height:"480px"});
	$('.campaign').beenbusy({width:"787px", height:"495px"});
	
	// Setup video popups
	$('.video-popup').colorbox({
		transition: 'fade',
		inline:true,
		scrolling: false,
		initialWidth: '646px',
		initialHeight: '396px',
		opacity:0.5
	});
    
    
	// Change client logos on mouseover	
	$('.cell').hover(function(){
		$(this).find('.cell-logo').css('background-image', 'url(images/home/updated_home/clients_on.png)');
	}, function(){
		$(this).find('.cell-logo').css('background-image', 'url(images/home/updated_home/clients_off.png)');
	});		
});
