// JavaScript Document
$(document).ready(function(){
						   
			
			
			if($.browser.msie) {
				
				$('#stripes').animate({
    			opacity: 1,
    			top: '90px',
				left: '0px',
    			height: '658px'
  				}, 3000, function() {
    				$('#stripes').animate({
    				opacity: 1,
    				top: '740px',
					left: '0px',
    				height: '8px'
  					}, 4000);
  				});
								
				$('.stripes_wide').animate({
    			opacity: 1
  				}, 3000, function() {
    				$('.stripes_wide').animate({
    				opacity: 0,
    				top: '740px'
  					}, 4000, function() {
    					$('.stripes_wide').animate({
    					opacity: 0,
						top: '0px',
						left: '0px',
    					margin: '0px',
						height: '0px'
  						}, 4001);
					});
  				});
				
			}else {
				
				$('#stripes').animate({
    			opacity: 1,
    			top: '90px',
    			height: '658px'
  				}, 3000, function() {
    				$('#stripes').animate({
    				opacity: 1,
    				top: '740px',
    				height: '8px'
  					}, 4000);
  				});
				
				$('.stripes_wide').animate({
    			opacity: 1
  				}, 2500, function() {
    			$('.stripes_wide').animate({
    				opacity: 0,
    				top: '740px'
  				}, 3000, function() {
    				$('.stripes_wide').animate({
    					opacity: 0,
    					margin: '0px',
						height: '0px'
  						}, 3500);
					});
  				});
				
			}
			   

});
