$(document).ready(function(){
  /* register any elements that need validation 
	*	force validation on field change*/
	
	$("ul.accordian > li > strong").click(function(e) {

		if ($(this).parent().find("p").css("display") != 'none'){
			$(this).parent().find("p,dl").hide('slow');
			$
		}else{
			$(this).parent().find("p,dl").show('slow');
		}
		e.preventDefault();
		
	});
	
	$('.rotation').cycle({ 
		prev:   '#prev', 
		next:   '#next', 
		timeout: 6000 ,     // force slides to fit container 
    pause:         1,     // true to enable "pause on hover" 
    delay:         -1
	});/**/
	
	if ($("a[rel^='prettyPhoto']").length){
		$("a[rel^='prettyPhoto']").prettyPhoto({theme:'facebook'});
	}
});