$(document).ready(function() {
	//Partner
	$('.hc_partner_div').cycle({
		fx: 'scrollDown', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		timeout: 3000,
		pause: true //pause on hover
	});
	
	//Social Network
	$(".social_div").fadeIn(2500);
	
	var origColor;
	//HC NEWS
	$("#hc_news p.hc_menu_head").click(function()
	{
		$(this).css({backgroundImage:"url('/Style Library/Images/hc/news_bg_active.png')"}).next("div.hc_menu_body").slideToggle(300).siblings("div.hc_menu_body").slideUp(300);
	    $(this).siblings().css({backgroundImage:"url('/Style Library/Images/hc/news_bg.png')"});
	});
	
	$("#hc_news p.hc_menu_head").mouseover(function()
	{
		origColor = $(this).css('color');
		$(this).css({color:"#d5d5d5"});
	}).mouseleave(function()
	{
		$(this).css({color:origColor});
	});
	//HC PRODUCT NEWS
	$("#hc_product_news p.hc_menu_head").click(function()
	{
	    $(this).css({backgroundImage:"url('/Style Library/Images/hc/news_bg_active.png')"}).next("div.hc_menu_body").slideToggle(300).siblings("div.hc_menu_body").slideUp(300);
	    $(this).siblings().css({backgroundImage:"url('/Style Library/Images/hc/news_bg.png')"});
	});

	$("#hc_product_news p.hc_menu_head").mouseover(function()
	{
		origColor = $(this).css('color');
		$(this).css({color:"#d5d5d5"});
	}).mouseleave(function()
	{
		$(this).css({color:origColor});
	});});

