// box fix

jQuery.noConflict();

jQuery(document).ready(function() {
								
	if(jQuery('#films div.film-unit').length > 0) {
		jQuery('#films div.film-unit').hover(function() {
			jQuery(this).find('h2 a').css({'background-color':'#06c','background-image':'none'});														
		}, function() {
			var sBg;
			if(jQuery(this).css('azimuth')!=="center") {
				sBg = 'transparent';
			} else {
				sBg = '#222';
			}
			jQuery(this).find('h2 a').css({'background-color':sBg,'background-image':'url(http://www.mikepadgett.com/wp-content/themes/mikepadgettv25/images/mpv25_bg_alpha.png)'});	
		}).click(function() {
			window.location = jQuery(this).find('h2 a').attr('href');
    		return false;										   
		});
	}
	
	if(jQuery('#books div.book-unit').length > 0) {
		jQuery('#books div.book-unit').hover(function() {
			jQuery(this).find('h2 a').css({'background-color':'#06c','color':'#fff'});														
		}, function() {
			jQuery(this).find('h2 a').css({'background-color':'#fff','color':'#06c'});	
		}).click(function() {
			window.location = jQuery(this).find('h2 a').attr('href');
    		return false;										   
		});
	}
	
});

