
$(document).ready(function(){
													 
	// open external links in new window - class="external"
	$('a[rel="external"]').click(function(){
		window.open(this.href);
		return false;
	}).attr('title', 'Opens in New Window or Tab');
	
	// hover effects for cart table
	$("#carttable tr.productrow").hover(function(){
	  $(this).addClass("active");
	}, function() {
	  $(this).removeClass("active");
	}
	);
	
try {
//	$(":text,textarea").toggleVal("toggle","filled");
	$(":text,textarea").toggleVal();
} catch(exception) {
	;
}
});

