/*
author: varta shrimali
date: 20 june 2009
*/

   


//purpose: to switch tabs between news and events on load of document.
	function switchTab(type)
	{
	 
		if(type=='e')
		{
			$('#eventsTd').attr('class', 'tab_new');
			$('#w_newsTd').attr('class', 'inactive_tab');
			$('#s_newsTd').attr('class', 'inactive_tab');
			$('#i_newsTd').attr('class', 'inactive_tab');
			$('#events').show();
			$('#news').hide();
			$('#postEvents').show(); 
			$('#gotNews').hide(); 
		}
	
		if(type=='wn')
		{
			$('#w_newsTd').attr('class', 'tab_new');
			$('#i_newsTd').attr('class', 'inactive_tab');
			$('#s_newsTd').attr('class', 'inactive_tab');
			$('#eventsTd').attr('class', 'inactive_tab');
			$('#news').show();
			//$('#newsContent').show();
			$('#wn_news').show();
			$('#sn_news').hide();
			$('#in_news').hide();
			$('#events').hide();
			$('#gotNews').show(); 
			$('#postEvents').hide(); 
		}
		
		if(type=='sn')
		{	//alert(type);
			$('#s_newsTd').attr('class', 'tab_new');
			$('#i_newsTd').attr('class', 'inactive_tab');
			$('#w_newsTd').attr('class', 'inactive_tab');
			$('#eventsTd').attr('class', 'inactive_tab');
			/*$('#news').show();
			//$('#newsContent').show();
			$('#sn_news').show();
			$('#wn_news').hide();
			$('#in_news').hide();*/
			$('#events').hide();
			$('#gotNews').show(); 
			$('#postEvents').hide(); 
		}
		
		if(type=='in')
		{	//alert(type);
			$('#i_newsTd').attr('class', 'tab_new');
			$('#w_newsTd').attr('class', 'inactive_tab');
			$('#s_newsTd').attr('class', 'inactive_tab');
			$('#eventsTd').attr('class', 'inactive_tab');
			/*$('#news').show();
			//$('#newsContent').show();
			$('#in_news').show();
			$('#sn_news').hide();
			$('#wn_news').hide();*/
			$('#events').hide();
			$('#gotNews').show(); 
			$('#postEvents').hide(); 
		}	
	}
	
	
	
//purpose: clear the default text from textbox
	var def='Keyword search';
	function clearText()
	{
    	if ($('#keyword').val() == def) 
			$('#keyword').val('');
	}	


//purpose: switch between different tabs on news and events page
	var type;
	function tabActivate(ob, type, r_type, newsId)
	{
	 
		if(type=='wn')
		{
			//alert(type);
			$('#w_newsTd').attr('class', 'tab_new');
				$('#eventsTd').attr('class', 'inactive_tab');
				$('#i_newsTd').attr('class', 'inactive_tab');
				$('#s_newsTd').attr('class', 'inactive_tab');
				$('#news').show();
				//$('#newsContent').show();
				$('#wn_news').show();
				$('.wn_news').show();
				$('#sn_news').hide();
				$('.sn_news').hide();
				$('#in_news').hide();
				$('.in_news').hide();
				$('#events').hide();
				$('#gotNews').show(); 
				$('#postEvents').hide(); 
				/*
				if(newsId != "")
				{
					if(type != r_type)
					{
						var x= {type:type};
					}
					else
					{
						var x= {type:type, newsId:newsId};
					}	
					
					*/
						//$("#newsContent").html('<center><br><br><br><br><br><img src="../images/loader.gif"></center>');
					//$.ajax({type: "GET", url: "rss.php?url=worldnews.txt", data:x, success:getNewsData});
					//getFeed("worldnews.txt");
				//}
		}
		
		if(type=='in')
		{	//alert(type);
			$('#i_newsTd').attr('class', 'tab_new');
				$('#eventsTd').attr('class', 'inactive_tab');
				$('#w_newsTd').attr('class', 'inactive_tab');
				$('#s_newsTd').attr('class', 'inactive_tab');
				$('#news').show();
				//$('#newsContent').show();
				$('#in_news').show();
				$('.in_news').show();
				$('#sn_news').hide();
				$('.sn_news').hide();
				$('#wn_news').hide();
				$('.wn_news').hide();
				$('#events').hide();
				$('#gotNews').show(); 
				$('#postEvents').hide(); 
				
				/*
				if(newsId != "")
				{
					if(type != r_type)
					{
						var x= {type:type};
					}
					else
					{
						var x= {type:type, newsId:newsId};
					}	
				*/
						//$("#newsContent").html('<center><br><br><br><br><br><img src="../images/loader.gif"></center>');
				//	$.ajax({type: "GET", url: "rss.php?url=industrynews.txt", data:x, success:getNewsData});
						
				//}
		}
		
		if(type=='sn')
		{ //alert(type);
			$('#s_newsTd').attr('class', 'tab_new');
				$('#eventsTd').attr('class', 'inactive_tab');
				$('#i_newsTd').attr('class', 'inactive_tab');
				$('#w_newsTd').attr('class', 'inactive_tab');
				$('#news').show();
				//$('#newsContent').show();
				$('#sn_news').show();
				$('.sn_news').show();
				$('#wn_news').hide();
				$('.wn_news').hide();
				$('#in_news').hide();
				$('.in_news').hide();
				$('#events').hide();
				$('#gotNews').show(); 
				$('#postEvents').hide(); 
			
			if(type != "")
				{
					if(type != r_type)
					{
						var x= {type:type};
					}
					else
					{
						var x= {type:type, newsId:newsId};
					}
					
						//$("#newsContent").html('<center><br><br><br><br><br><img src="../images/loader.gif"></center>');
						//$.ajax({type: "GET", url: "../news/newsRss.php", data:x, success:getNewsData});
						
			}
		}
		
		if(type=='e')
		{	//alert(type);
			$('#eventsTd').attr('class', 'tab_new');
				$('#w_newsTd').attr('class', 'inactive_tab');
				$('#i_newsTd').attr('class', 'inactive_tab');
				$('#s_newsTd').attr('class', 'inactive_tab');
				$('#events').show();
				$('#news').hide();
				$('#postEvents').show(); 
				$('#gotNews').hide(); 
		}
	
	}
	
	function getNewsData(data)
	{
		//alert(data);
		$("#newsContent1").html(data);	
	}




//purpose: search events on news and events page. 
	var op='all';
	function searchEvent(type)
	{
		//alert('alert');
		type=type;
		op = $('#searchOption').val().trim();
		keyword = $('#keyword').val().trim();
		var x = {type:type, op:op, keyword:keyword};
		$.ajax({type: "GET", url: "../news/search_event.php", data:x, success:searchEventData});	    
			
			
	}
	
	
	function searchEventData(data)
	{
		$("#eventsContent").html(data);	
	}
	

	
	
