$(document).ready(function(){
						   
$(window).resize(function() {test();});
	test();	
});


function  test(){
	
				var h = $(window).height();
			var w = $(window).width();
			var $styleswitch = $('#styleswitch');
			    if((w<1024 || h<=750)||(h<=870 && w<=1024)){
				$( '.container' ).css( {marginTop:'6px'} );
			}
			else if( (w<1266  &&  w>=1024) || (h<870  && h>750)){
				$( '.container' ).css( {marginTop:'3%'} );
			}
			else{
				$( '.container' ).css( {marginTop:'6%'} );
				}
}

