// JavaScript Document

$(document).ready(function(e) {
    
	
	 var $winwidth = $(window).width();
	 var $imgwidth = $winwidth;
	 var $imgheight = $winwidth/2.712;
	 
      // alert($imgheight);       
			   
			   
			   $('.slides_container, .slide').css('width', $winwidth);
				$('#homeSlider, .slides_container').css('height', $imgheight);
				
			   $('.slide img').attr({
                        width: $imgwidth,
						height: $imgheight
                });
				
				
                $(window).bind('resize', function(){
                    var $winwidth = $(window).width();
					var $imgwidth = $winwidth;
	 				var $imgheight = $winwidth/3.000;
                    
					$('.slides_container, #homeSlider, .slide').css('width', $winwidth).css('height', $imgheight);
					$('.caption').css('width', $winwidth);
					$('.slide img').attr({
                        width: $imgwidth,
						height: $imgheight
                		});
                 });

	
	
	
	
	
});
