			function resize(){		
					if (document.body.offsetWidth > 768 && document.body.offsetWidth < 991){
				 		//alert("tablet");
						$(document).ready(function(){
							$('#slider1').tinycarousel({ display: 4 });	
						});
					}
					else if (document.body.offsetWidth < 767 && document.body.offsetWidth < 480){
				 		//alert("mobile");
						$(document).ready(function(){
							$('#slider1').tinycarousel({ display: 2 });	
						});
					}
					else if (document.body.offsetWidth < 767){
				 		//alert("mobile wide");
						$(document).ready(function(){
							$('#slider1').tinycarousel({ display: 3 });	
						});
					}		
					else {
						$('#slider1').tinycarousel({ display: 6 });	
					}			
				}	
				$(document).ready(function(){
					$('select.styled').customStyle();
					resize();						
				});				
				window.onresize = resize;
