$(document).ready(function () {
	var screenWidth = $(window).width();
	$('#slider').css("width",screenWidth);
	$('.panel').css("width",screenWidth);

    $(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
		window.parent.location = window.parent.location.href;
        window.parent.location.reload(true);
	};
});
