// JavaScript Document

		$(document).ready(function()
		{			
				showBody('01');			//Image Default
				showContent('01');		//Content Default	
				
				//For Align Menu (Home)
				$("#01").css('text-align','right');
				$("#01").css('color','#FFFFFF');	
				 
				 $("a.linkclass").click(function () {
												  					
					$('.linkclass').removeAttr('style');				  	
										
					showBody(this.id);
					showContent(this.id);
										
					$(this).css('text-align','right');
					$(this).css('color','#FFFFFF');										
				});				
		});
		
		
		function showBody(id)
		{
			
			//detect browser  if(msie  v 6.0)
			if ($.browser.msie && jQuery.browser.version.substr(0,3)=="6.0")
			{					
				$("#img_ie6").attr('src','images/'+id+'.png');				
			}
			//Others  Browser ( Safari / Opera / Mozilla / IE7 / etc)
			else
			{			
				$('.img_body').hide();	
				$('#body_'+id).fadeIn('slow');
			}			   
		}


		function showContent(id)
		{
			$('.content').hide();	
			$('#content_'+id).fadeIn('slow');
		}
		
				
		
		function Login()
		{
			var program 	= $('#affiliate_program').val();
			
			if(program=='PythonMedia')
			{									 
				window.open('http://reports.pythonmedia.com/retailers/rtreps_new/pythonmedia_signin.phtml');
				return false;  //Not reload Page;
			}
			if(program=='iFunSpace')
			{						
				window.open('http://aff.ifunspace.com');
				return false;  //Not reload Page;
			}
			if(program=='Bingo')
			{						
				window.open('http://www.gamingdollars.com'); 
				return false; //Not reload Page;
			}
			if(program=='Health')
			{											
				window.open('http://www.monix.com'); 
				return false; //Not reload Page;
			}
		}
