/**
 * This code was written by Mike Moore November 2009 and is the property of OnNowTV.com Broadcasting Association...Copyright 2008
 * This code MAY NOT BE USED without the expressed written consent of 
 * OnNowTV.com Broadcasting Association - all rights reserved.
 
 * File name:     jq_guideChannelNoLinkHover.js
 * Description:   define common global variables below:
 * History:       
 *   mm/dd/yyyy - Name - brief description of changes              
 */
 
$(document).ready(function(){
	$("a.guideChannelNoLink").hover(function () {
		$("h5",this).css({'background-color' : '#c10000'});
		$("h2",this).css({'background-color' : '#c10000', 'color' : '#ffffff', 'border' : '1px solid #c10000', 'border-top' : 'none'});
	}, function () {
		$("h5",this).css({'background-color' : '#5f5f5f'});
		$("h2",this).css({'background-color' : '#ececec', 'color' : '#c10000', 'border' : '1px solid #c3c3c3', 'border-top' : 'none'});
	});
});
