	$(document).ready(function( ) {

/*
    	$('#str_left img').bind('mouseover', function( ) {
	        this.src=this.src.replace('img/str_left.png', 'img/str_left_or.png');
	    });
    
    	$('#str_left img').bind('mouseout', function( ) {
	        this.src=this.src.replace('img/str_left_or.png', 'img/str_left.png');
	    });

    	$('#str_right img').bind('mouseover', function( ) {
	        this.src=this.src.replace('img/str_right.png', 'img/str_right_or.png');
	    });

    	$('#str_right img').bind('mouseout', function( ) {
        	this.src=this.src.replace('img/str_right_or.png', 'img/str_right.png');
	    });

*/
    	$('#brands_t img').bind('mouseover', function( ) {
	        this.src=this.src.replace('img/brands_nike.gif', 'img/brands_nike_green.gif');
	        this.src=this.src.replace('img/brands_jordan.gif', 'img/brands_jordan_green.gif');
            //$('#wpuma').css('display','block');
	    });
    
    	$('#brands_t img').bind('mouseout', function( ) {
	        this.src=this.src.replace('img/brands_nike_green.gif', 'img/brands_nike.gif');
        	this.src=this.src.replace('img/brands_jordan_green.gif', 'img/brands_jordan.gif');
            //$('#jordan').css('display','none');
	    });

    	$('#brands_m img').bind('mouseover', function( ) {
	        this.src=this.src.replace('img/brands_puma.gif', 'img/brands_puma_green.gif');
	        this.src=this.src.replace('img/brands_converse.gif', 'img/brands_converse_green.gif');
	        this.src=this.src.replace('img/brands_dkny.gif', 'img/brands_dkny_green.gif');
            //$('#puma').css('display','none');
	    });
    
    	$('#brands_m img').bind('mouseout', function( ) {
	        this.src=this.src.replace('img/brands_puma_green.gif', 'img/brands_puma.gif');
	        this.src=this.src.replace('img/brands_converse_green.gif', 'img/brands_converse.gif');
        	this.src=this.src.replace('img/brands_dkny_green.gif', 'img/brands_dkny.gif');
	    });

    	$('#brands_b img').bind('mouseover', function( ) {
	        this.src=this.src.replace('img/brands_lacoste.gif', 'img/brands_lacoste_green.gif');
	        this.src=this.src.replace('img/brands_timberland.gif', 'img/brands_timberland_green.gif');
	    });
    
    	$('#brands_b img').bind('mouseout', function( ) {
	        this.src=this.src.replace('img/brands_lacoste_green.gif', 'img/brands_lacoste.gif');
        	this.src=this.src.replace('img/brands_timberland_green.gif', 'img/brands_timberland.gif');
	    });
        
    
    	$('#brands_b_2 img').bind('mouseover', function( ) {
	        this.src=this.src.replace('img/brands_newbalance.gif', 'img/brands_newbalance_green.gif');
	    });
    
    	$('#brands_b_2 img').bind('mouseout', function( ) {
        	this.src=this.src.replace('img/brands_newbalance_green.gif', 'img/brands_newbalance.gif');
	    });
        
        show_brand_wind();
        
	});

    function show_brand_wind(){
        
        var brands=new Array('puma','jordan','nike','converse','dkny','lacoste','timberland', 'newbalance');
        
        $.each(brands,function (num,el){
            $('#'+el).mouseover(function (){$('#w'+el).css('display','block');});
            $('#'+el).mouseout(function (){$('#w'+el).css('display','none');});
        });
        
    }




