var nikhil = { 
	init : function(arg){ 
				switch(arg){
					case 'main' :
						// bind the networks popup and text change
						$("div.module1 .item").hover(function(){ 
															$(this).animate( { marginTop: "-=7px" }, 200);
															var getclass = $(this).attr("class").split(" ");
															getclass = getclass[getclass.length-1]
															$(this).parent().find("span").hide();
															$(this).parent().find("span." + getclass + "_show").fadeIn("fast");
													},
													function(){ 
															$(this).animate( {  marginTop: "+=7px" }, 200); 
						});
					break;

					default:
					break;
				}
			} 
};
