
/*slider*/
		$(document).ready(function() {
			$('#coin-slider').coinslider({width:982,height:440,navigation: true});
			
			    //alert($(window).width());
			$("*").each(function(){
			$("body").width($(window).width());
				if($(this).width()>$(window).width())
				{
					$(this).width($(window).width());
				}
			})
		});

