$(document).ready(function(){
	$('div.sublink_container').hover(
		function(){
			$(this).children('a.sub_img').css('background-position', '0px -78px');
			$(this).children('a.sub_text').css('text-decoration', 'underline');
		},
		
		function(){
			$(this).children('a.sub_img').css('background-position', '0px 0px');
			$(this).children('a.sub_text').css('text-decoration', 'none');
		}
	);
});

function bookmark(url, sitename){
	var ns = 'Netscape and FireFox users, use CTRL+D to bookmark this site.';

	if((navigator.appName == 'Microsoft Internet Explorer') && (parseInt(navigator.appVersion) >= 4)){
		window.external.AddFavorite(url, sitename);
	} else if(navigator.appName == 'Netscape'){
		alert(ns);
	}
}
