$(document).ready(function () { //HTML DOM document is ready

	//open links in a new window - rel=external
	$("a[rel=external]").attr("target","_blank").each(function(n) {
		$(this).attr("title") !='' ? this.title=$(this).attr("title")+'. Opens in a new browser window.' : this.title='Opens in a new browser window.';
	});


	// form buttons
	//$("input.submit").bind('mouseover focus', function(event) {
	//	$(this).addClass('submit_f2');
	//}).bind('mouseout blur', function(event) {
	//	$(this).removeClass('submit_f2');
	//});
	//$("input.reset").bind('mouseover focus', function(event) {
	//	$(this).addClass('reset_f2');
	//}).bind('mouseout blur', function(event) {
	//	$(this).removeClass('reset_f2');
	//});



});

