var MIN_WIDTH = 950;
var MIN_HEIGHT = 750;

var MAX_WIDTH = 2000;
var MAX_HEIGHT = 1000;

 $(document).ready(function() { 

	
	var windowHeight = $(window).height();
	var windowWidth = $(window).width();
	
		//regulamos la altura segun el fondo
		var y =10 ;
		//$("#flashContainer #likeBar").css("bottom", y);
		
		if(windowHeight > MAX_HEIGHT){
			$("#flashContainer").css("height",MAX_HEIGHT );
		}
		else if(windowHeight<MIN_HEIGHT ){
			$("#flashContainer").css("height",MIN_HEIGHT );
		}
		
		if(windowWidth > MAX_WIDTH){
			$("#flashContainer").css("width",MAX_WIDTH );
		}
		else if(windowWidth < MIN_WIDTH){
			$("#flashContainer").css("width",MIN_WIDTH );
		}
		
 });
 
 
 $(window).resize(function() {  
 
 	var windowHeight = $(window).height();
	var windowWidth = $(window).width();
	

	var y =-50;
	//$("#flashContainer #likeBar").css("bottom", y);
	
	if(windowHeight > MAX_HEIGHT){
		$("#flashContainer").css("height",MAX_HEIGHT );
	}
	else if(windowHeight<MIN_HEIGHT ){	
		$("#flashContainer").css("height",MIN_HEIGHT);
	}else{
		$("#flashContainer").css("height","100%");
	}
	
	if(windowWidth > MAX_WIDTH){
		$("#flashContainer").css("width",MAX_WIDTH );
	}
	else if(windowWidth < MIN_WIDTH){
		$("#flashContainer").css("width",MIN_WIDTH );
	} else {
		$("#flashContainer").css("width","100%");
	}
	
});  




