/* promo */
$(function(){

		$('a.promoLink img[rel!=""]').hover(function(){
			var $this = $(this), src = $this.attr('src');
			
			$this.attr('src', $this.attr('rel'));
			$this.attr('rel', src);
		}, function(){
			var $this = $(this), src = $this.attr('src');
			
			$this.attr('src', $this.attr('rel'));
			$this.attr('rel', src);
		});
});
