/**
 ** Leftnav image Rotation
 ** @author jorgec
 */

jQuery(document).ready( function() {
	
	// LEFT NAV ROTATION IMAGE FUNCTION //
	MyImages=new Array();
	    MyImages[0]= serverURL + '/res/i/ps/233x125_Brand_01.jpg';
	    MyImages[1]= serverURL + '/res/i/ps/233x125_Brand_02.jpg';
	    MyImages[2]= serverURL + '/res/i/ps/233x125_Brand_03.jpg';
	    MyImages[3]= serverURL + '/res/i/ps/233x125_Brand_04.jpg';
	    MyImages[4]= serverURL + '/res/i/ps/233x125_Brand_05.jpg';
	    MyImages[5]= serverURL + '/res/i/ps/233x125_Brand_06.jpg';
	    MyImages[6]= serverURL + '/res/i/ps/233x125_Brand_07.jpg';
	    MyImages[7]= serverURL + '/res/i/ps/233x125_Brand_08.jpg';
	    MyImages[8]= serverURL + '/res/i/ps/233x125_Brand_09.jpg';

    if(MyImages[Math.round(Math.random()*9)]) {    	
    	jQuery("#mainImage").attr("src",MyImages[Math.round(Math.random()*9)]);    	
    }	      	
});