$(document).ready(
function(){
		$("#channelbox_content p.sub-cat").mouseover(function()
		{
			$(this).addClass("hover_img");			
		 });
		$("#channelbox_content p.sub-cat").mouseout(function()
		{
			$(this).removeClass("hover_img");			
		 });
		$("#channelbox_content p.sub-cat1").mouseover(function()
		{
			$(this).addClass("hover_img");
		});
		$("#channelbox_content p.sub-cat1").mouseout(function()
		{
			$(this).removeClass("hover_img");
		});
});	
