 $(document).ready(function() {        try {          $('h3.s_headline:first').addClass('first');         }        catch (e) {            return false;        }               			$("#slider_01").easySlider({				auto: true, 				continuous: true,				pause: 15000,				controlsShow: false			});				    $('.btn').removeClass('btn').addClass('btn2').show();                          
                    checkIE6();                           
            
                     });  // end:DOM ready
window.onresize = checkIE6();
function checkIE6(){
if (parseInt(jQuery.browser.version) == 6) 
                {
	var container = getElementsByTagName ('container')[0];
	container.style.width = (document.body.clientWidth > 1280)? "1280px" : "auto";
}
 }