/*
* 
* Fettah KURTULUS
* Computer Engineer & Web Aplication Developer
* www.fettahkurtulus.com
* 
* 2011 efor.com.tr
*
*/
FK = {
	
	init : function (){
		
		//SET SOMETHING
	
		FK.routineProcesses();
		FK.ajaxMail();
	
		
	},
	
	routineProcesses   : function (){

		if(screen.width<=1024)
		{
			$("#topBar").css({"width":"1200px"});
			$("#middleArea").css({"width":"1200px"});
		}
		else
		{
			$("#topBar").css({"width":screen.width});
			$("#middleArea").css({"width":screen.width});
		}
		
		$(window).resize(function(){
			if(screen.width<=1024)
			{
				$("#topBar").css({"width":"1200px"});
				$("#middleArea").css({"width":"1200px"});
			}
			else
			{
				$("#topBar").css({"width":screen.width});
				$("#middleArea").css({"width":screen.width});
			}
		});
	},
	
	ajaxMail :  function () {
  		
  		$("#magazalar").change(function(){
			var id = $("#magazalar").val();
				$.ajax({
				type:"GET",
				data:"id="+id,
				url:'ajaxAdres.asp',
				success:function(result){
					$("#adresAjax").html(result);
				}
			});
		
		});
	}		
}

$(function () {
						   
	FK.init();
	
});


