/* JavaScript Document
The Func
version: 2.4
Copyright (c) 2007 Hikaru Tamaki (PEARLPUPPY)
http://www.pearlpuppy.com
date: 27 Oct. 2007
last update: 8 Oct 2009
*/


// RollOver IMG
$(rolling);
function rolling() {
	var imgLoad = new Object();
	$('img.ovr').each(function(i) {
		var imgNormal = this.src;
		var dot = this.src.lastIndexOf('.');
		var imgRolling = this.src.substr(0, dot) + '_o' + this.src.substr(dot, 4);
		imgLoad[this.src] = new Image();
		imgLoad[this.src].src = imgRolling;
			$(this).hover(function() { 
			this.src = imgRolling; 
			},
			function() { this.src = imgNormal; 
			});
	});
}


// Open New Window
$(fresher);
function fresher() {
	$('a.openw').click(function() {
	this.target='_blank';
	});
	
}
 

// Striped Table : add class"eve" to even-numbered tags under the class"stripe" with jQuery
$(function() {
		$(".stripe tr:even").addClass("eve");
});

// EOF