// JavaScript Document

$(document).ready(function() {
	
	/* START ROLLOVER */
	var cache = [];
	
	$("img.roll, input.roll").each(function() {
		//let's preload
		var cacheImage = document.createElement('img');
		cacheImage.src = this.src.replace(/_off([_\.])/, '_on$1');
		cache.push(cacheImage);
	});
	
													 
	$("img.roll, input.roll").hover(function(){
		//alert(this.src);
		this.src=this.src.replace(/_off([_\.])/, '_on$1');
	},
	function(){
		this.src=this.src.replace(/_on([_\.])/, '_off$1');
	});
	
	/* END ROLLOVER */
	
	/* Start COLORBOX automatically for links with rel="colorbox" 
	$("a[rel='colorbox']").colorbox();
	$("a[rel='video_colorbox']").colorbox({iframe: true, width:570, height: 400});*/
	
	
});

