$(function()
{

equalHeight();
$('#personalDetails, #accountDetails, #errorMsg').corner("10px");
$('.helper, .bingoBorder, .memberPack, .winnerImage').corner("8px");





jQuery.ifixpng('images/pixel.gif');
jQuery('img, .bgPng, div.tabs, #footer, #gamesMenuTop, #gamesMenuBot').ifixpng();

$('input, select').focus(function() {
	$(this).parent().addClass('focusedd');
});

$('input, select').blur(function() {
	$(this).parent().removeClass('focusedd');
});





});

function equalHeight() {
	var max = 0;
	$('.communityCaseInner, .communityCaseInner02, .communityCaseInner03').each(function(i) {
			if ($(this).height() > max) max = $(this).height();
	});
	$('.communityCaseInner,.communityCaseInner02, .communityCaseInner03').css('height',max);
}


$(document).ready(function(){	
$("#slider").easySlider({
	controlsBefore:	'<p id="controls">',
	controlsAfter:	'</p>',
	prevId: 'prevBtn',
	nextId: 'nextBtn'

});			
});


function showlayer(layer){
	var myLayer=document.getElementById(layer).style.display;
	if(myLayer=="none"){
		document.getElementById(layer).style.display="block";
	} else { 
		document.getElementById(layer).style.display="none";
		}
}










