$(document).ready(function(){
		checkMailToLogin = function(f){
			if(f.user.value.indexOf('@') == -1)
				f.user.value = f.user.value+'@tsitco.com';
		}
		goCompanyDetails = function(_id)
		{
			document.location="/company/?id="+_id;
		}
		$("#lastBuyes ul li:even").each(function(){
				$(this).addClass("evenProduct");
												 });
		changeExchangeMap = function(_ext){
			$('body, html').animate({
										scrollTop: $('#Exchange_mapView').offset().top 
									},500)
//			$("#exchangeMap").html("");
			$("#Exchange_mapView").attr("src","http://www.cbi.ir/GetImageExRatesChart.aspx?cid="+_ext+"&fa=True&cht=4");	
			
			
			
		}
})