//window resizer function resizeContainer() { var x = $('.main_wrapper'); var header_x = $('.header'); var w = $(window).width(); if(w < 650 && w > 0) { x.css("width", "306px");header_x.css("width", "306px");} else if(w < 950 && w > 650) { x.css("width", "612px");header_x.css("width", "612px");} else if(w < 5000 && w > 1000) { x.css("width", "918px");header_x.css("width", "918px");} }; $(document).ready(resizeContainer); $(window).resize(resizeContainer); //SLIDER $(document).ready(function(){ $(".main_tn", this).hover( function() { $("img.a", this).stop().animate({'opacity': 0}, 200); $(".slider", this).stop().animate({ 'bottom': 33 }, 200); }, function() { $("img.a", this).stop().animate({'opacity': 1}, 200); $(".slider", this).stop().animate({ 'bottom': 0 }, 200); } ); $(".main_tn").css({ 'opacity': 0 }); $(".main_tn").each(function(index) { $(this).find("img").load(function(){ $(this).parent().parent().delay(500).animate({opacity: 1}, 500) }); }); });