// /pub/wbbgiants/scripts/client/default.js 
function goToURL(M_id){document.location='?id='+M_id}
$(document).ready(function(){
	$(".alt").hide();
	$('.teamfoto a').lightBox({fixedNavigation:true});
	$('.linksLink').addClass('icon bullet_go');
	//$(document).pngFix();
	replace_label('loginEmail');replace_label('loginPassword');
	$("form input[type='password'],form input[type='text'],textarea").focus( function(){$("form input[type='text'],textarea").css({backgroundColor:''});$(this).css({backgroundColor:'#FFFCDF'});}).blur( function(){$('form input').css({backgroundColor:''});});
	//$('h2').sifr({path: '/wbbgiants/swf/fonts/',font:'Swis721 BlkCn BT'});
	//$('h3').sifr({path: '/wbbgiants/swf/fonts/',font:'Swis721 Cn BT'});
});
function replace_label(id) {
	var label = $("label[for='"+id+"']").remove().text();
	$('#'+id).addClass('placeholder').val(label).focus(function() {
		if (this.value == label) {
			$(this).removeClass('placeholder').val('');
		};
	}).blur(function() {
		if (this.value == '') {
			$(this).addClass('placeholder').val(label);
		}
	});
}