var arrImg = new Array();
arrImg['register'] = new Array();
arrImg['register']['src'] = new Array();
arrImg['register']['src']['active'] = "http://img.shaadicentre.com//images/register-active.gif";
arrImg['register']['src']['hover'] = "http://img.shaadicentre.com//images/register-hover.gif";
arrImg['register']['src']['normal'] = "http://img.shaadicentre.com//images/register-normal.gif";

arrImg['free-verification'] = new Array();
arrImg['free-verification']['src'] = new Array();
arrImg['free-verification']['src']['active'] = "http://img.shaadicentre.com//images/free-verification-active.gif";
arrImg['free-verification']['src']['hover'] = "http://img.shaadicentre.com//images/free-verification-hover.gif";
arrImg['free-verification']['src']['normal'] = "http://img.shaadicentre.com//images/free-verification-normal.gif";

arrImg['search-partner'] = new Array();
arrImg['search-partner']['src'] = new Array();
arrImg['search-partner']['src']['active'] = "http://img.shaadicentre.com//images/search-partner-active.gif";
arrImg['search-partner']['src']['hover'] = "http://img.shaadicentre.com//images/search-partner-hover.gif";
arrImg['search-partner']['src']['normal'] = "http://img.shaadicentre.com//images/search-partner-normal.gif";

arrImg['request-contact'] = new Array();
arrImg['request-contact']['src'] = new Array();
arrImg['request-contact']['src']['active'] = "http://img.shaadicentre.com//images/request-contact-active.gif";
arrImg['request-contact']['src']['hover'] = "http://img.shaadicentre.com//images/request-contact-hover.gif";
arrImg['request-contact']['src']['normal'] = "http://img.shaadicentre.com//images/request-contact-normal.gif";

arrImg['quality-matches'] = new Array();
arrImg['quality-matches']['src'] = new Array();
arrImg['quality-matches']['src']['active'] = "http://img.shaadicentre.com//images/quality-matches-active.gif";
arrImg['quality-matches']['src']['hover'] = "http://img.shaadicentre.com//images/quality-matches-hover.gif";
arrImg['quality-matches']['src']['normal'] = "http://img.shaadicentre.com//images/quality-matches-normal.gif";

arrImg['personal-advisors'] = new Array();
arrImg['personal-advisors']['src'] = new Array();
arrImg['personal-advisors']['src']['active'] = "http://img.shaadicentre.com//images/personal-advisors-active.gif";
arrImg['personal-advisors']['src']['hover'] = "http://img.shaadicentre.com//images/personal-advisors-hover.gif";
arrImg['personal-advisors']['src']['normal'] = "http://img.shaadicentre.com//images/personal-advisors-normal.gif";

arrImg['secure-database'] = new Array();
arrImg['secure-database']['src'] = new Array();
arrImg['secure-database']['src']['active'] = "http://img.shaadicentre.com//images/secure-database-active.gif";
arrImg['secure-database']['src']['hover'] = "http://img.shaadicentre.com//images/secure-database-hover.gif";
arrImg['secure-database']['src']['normal'] = "http://img.shaadicentre.com//images/secure-database-normal.gif";

arrImg['broad-network'] = new Array();
arrImg['broad-network']['src'] = new Array();
arrImg['broad-network']['src']['active'] = "http://img.shaadicentre.com//images/broad-network-active.gif";
arrImg['broad-network']['src']['hover'] = "http://img.shaadicentre.com//images/broad-network-hover.gif";
arrImg['broad-network']['src']['normal'] = "http://img.shaadicentre.com//images/broad-network-normal.gif";

arrImg['what-centre'] = new Array();
arrImg['what-centre']['src'] = new Array();
arrImg['what-centre']['src']['active'] = "http://img.shaadicentre.com//images/what-active.gif";
arrImg['what-centre']['src']['hover'] = "http://img.shaadicentre.com//images/what-hover.gif";
arrImg['what-centre']['src']['normal'] = "http://img.shaadicentre.com//images/what-normal.gif";

arrImg['why-centre'] = new Array();
arrImg['why-centre']['src'] = new Array();
arrImg['why-centre']['src']['active'] = "http://img.shaadicentre.com//images/why-active.gif";
arrImg['why-centre']['src']['hover'] = "http://img.shaadicentre.com//images/why-hover.gif";
arrImg['why-centre']['src']['normal'] = "http://img.shaadicentre.com//images/why-normal.gif";

arrImg['how-centre'] = new Array();
arrImg['how-centre']['src'] = new Array();
arrImg['how-centre']['src']['active'] = "http://img.shaadicentre.com//images/how-active.gif";
arrImg['how-centre']['src']['hover'] = "http://img.shaadicentre.com//images/how-hover.gif";
arrImg['how-centre']['src']['normal'] = "http://img.shaadicentre.com//images/how-normal.gif";

$(document).ready(function() {

	changeHomepagecont("prefered-service");
	changeHomepagecont("advisery-help");
	changeHomepagecont("divid");

});

function clickover(divid){
	$("#"+divid+" li .inactive").mouseover(function(){
		currimg = arrImg[ $(this).attr('id') ]['src']['hover'];
		$(this).attr("src", currimg);
	});

	$("#"+divid+" li .inactive").mouseout(function(){
		currimg = arrImg[ $(this).attr('id') ]['src']['normal'];
		$(this).attr("src", currimg);
	});

	$("#"+divid+" li .active").mouseover(function(){
		currimg = arrImg[ $(this).attr('id') ]['src']['active'];
		$(this).attr("src", currimg);
	});
	$("#"+divid+" li .active").mouseout(function(){
		currimg = arrImg[ $(this).attr('id') ]['src']['active'];
		$(this).attr("src", currimg);
	});

}

function changeHomepagecont(divid){

	  $("#"+divid+" li .inactive").click(function(){

	  $("#"+divid+" li .inactive, #"+divid+" li .active").each(function(){

		  obj_id = ( $(this).attr('id') );
		  imgsrc = arrImg[obj_id]['src']['normal'];
		  $(this).attr("src", imgsrc);
		  $(this).removeAttr('class');
		  $(this).addClass( 'inactive cursor' );
		  $("#div-" + obj_id).hide();
	  });


		currimg = 		arrImg[ $(this).attr('id') ]['src']['active'];
        $(this).attr("src", currimg);
		$(this).removeAttr('class');
		$(this).addClass( 'active cursor' );
		$("#div-" + $(this).attr('id')).show();


		clickover(divid);

    });

	clickover(divid);

	$("#"+divid+" li .inactive:eq(0)").trigger('click');
	}

