﻿$(document).ready(function() {
		$("img.hvbutton").mouseover(function() {
				this.oldsrc = this.src;
				this.src = this.src.replace(".jpg", "_h.jpg");
			})
			.mouseout(function() {
				if (this.oldsrc != undefined) this.src = this.oldsrc;
		});
			
		$('#bigImg').cycle({delay: 3500});
		
		$(".listTable").colorize();
		
		$('.listTable tr').click(function() {
			var href = $(this).find("a").attr("href");
			if(href) {
				window.location = href;
			}
		});	
		
		$('.listTable tr.tip').cluetip({
		  cluetipClass: 'rounded', 
		  dropShadow: false, 
		  positionBy: 'mouse',
		  tracking: true
		});
		
		$('.minigal').mouseover(function() {
			var re = new RegExp("thumb")
			var str = this.src
			var newsrc = str.replace(re, "med");
			var newhref = str.replace(re, "big");
			document.getElementById('big').src = newsrc;
			document.getElementById('biglink').href = newhref;
		});	
		
		
		$('#thumbnailScroll').jScrollPane({scrollbarWidth:10});		

});

$(function() {
	$(".auto .jCarouselLite").jCarouselLite({
		auto: 800,
		speed: 1500
	});
	document.getElementById("jCarouselLite").style.width = 540 +"px";
});
