
$(document).ready(function(){
	var imageindex=1;
	
	setInterval(function() {
		imagetemp = imageindex;
		if (imageindex == 6)
			imageindex = 0;
		imageindex++;
		
		image="http://www.interlloy.com.au/wp-content/themes/combat/images/banner/Inter_Slider_"+imageindex+".jpg";
		
		// on hovering over, find the element we want to fade *up*
	    var fade = $('#bgimage-'+imageindex );
	    
	    // fade in quickly
	    fade.fadeIn(1000);
	     $( '#bgimage-'+imagetemp ).fadeOut(1000);
	        
		/*$("#bgimage").find("img").remove();
		
		$("#bgimage").imgLoading({
			version:'2',			 
			src:image,
			loadingImg:'http://www.interlloy.com.au/wp-content/themes/combat/images/banner/loading.gif',	//images/loading.gif
			func_loaded:function(self){},		
			func_completed:function(self){},		
			error:function(selfObj){}
		});*/
		/*$(".banner li#but1 img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_1_inact.png');
		$(".banner li#but2 img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_2_inact.png');
		$(".banner li#but3 img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_3_inact.png');
		$(".banner li#but4 img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_4_inact.png');
		$(".banner li#but5 img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_5_inact.png');
		$(".banner li#but6 img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_6_inact.png');*/
		$(".banner li#but"+imagetemp+" img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_' + imagetemp + '_inact.png');
		$(".banner li#but" + imageindex + " img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_' + imageindex + '_act.png');
		//$(".banner div#button.button #but" + imageindex + ' a').addClass("selected");
      
	}, 5000);
      
      $('table.product_data a img').hover(
      function(){
 	  	$(this).attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/viewprod_on.png');
      },
      function(){
 	  	$(this).attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/viewprod.png');
      }
      );

      
      $('#searchform #s').keypress(function(e){
      if(e.which == 13){
           
       $('#searchform').submit();
       e.preventDefault();
       }
      });
      
      $(".banner li img").hover(
      function(){
 	  	$(this).attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/' + $(this).attr('id') + '_hov.png');
      },
      function(){
 	  	$(this).attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/' + $(this).attr('id') + '_inact.png');
 	  	$(".banner li#but" + imageindex + " img").attr('src', 'http://www.interlloy.com.au/wp-content/themes/combat/images/banner_' + imageindex + '_act.png');
		
      }
      );
      
});

