$(document).ready(function(){

	/*Login*/ 
	$("#panel").hide(); 
	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});
	
	/*Cufon text replacement*/
	Cufon.replace('h1, h2, .category h3, #comment-area h3, .bigname, #link-own-brand-categories h3,#link-own-brand h3, .cufon, #nav a, #search-box p, .health_advice_panel h3 a, #latest-health-advice h3, .box h3, .main-column h3');
if ($('#slideshow')) {	
	/*Rotating banner slideshow*/
	$('#slideshow').after('<div id="page" class="page">').cycle({
	  fx:     'fade',
	  speed:  300,
	  timeout: 3000,
	  pager:  '#page'
	});
	}
	/*remove right margin from evry 3rd li of #contentpage #content #medi-kem-pharmacy .box #pharmacy-photos li*/
	$("#contentpage #content #medi-kem-pharmacy .box #pharmacy-photos li:nth-child(3n+3)").css("margin-right","0px");
	
	/*aligns #hours td text to the right*/
	$("#hours td:nth-child(odd)").css("text-align","right");
	
	/*Add rounded corners*/
	$('.box, .main-column h2, #footer-content, #footer-content .box h3, #credits, #link-own-brand-categories h4, .health_advice_panel, .information-provided-by').corner("3px");
	$('.pharm-search-box').corner();
	$('.health_advice_panel h3').corner("top 3px");
	
	/*Equal element heights
	var highestCol = Math.max($('#boxContainer').height(),$('#banner').height());
	$('#boxContainer').height(highestCol);*/
	
	/*Equal column heights*/
	$('.health_advice_panel').equalHeights();
	
});

