jQuery.noConflict();
jQuery(document).ready(function() { 		
		//Show and Hider
		jQuery("dt>a").toggle(function(){
			jQuery(jQuery(this).parent().next()).animate({ height: 'show', opacity: 'show' }, 300 );
   		},function(){
    		
			jQuery(jQuery(this).parent().next()).animate({ height: 'hide', opacity: 'hide' }, 300);
  		});
		jQuery("dd").hide();
		
		
		//get id of text on focus for currency conversion form 
		jQuery('input[id="currency-amount"]').focus(function() {  
			jQuery(jQuery(this).val(""));  
		});
		
		//http://malsup.com/jquery/cycle/
		jQuery('.slideshow').cycle({fx: 'fade',timeout:6000   // choose your transition type, ex: fade, scrollUp, shuffle, etc...});
		});

		jQuery('.slideshow2').cycle({fx: 'fade',timeout:3000  // choose your transition type, ex: fade, scrollUp, shuffle, etc...});
		});
		
		//Light Box - http://leandrovieira.com/projects/jquery/lightbox/

        jQuery('#gallery a').lightBox({
			imageLoading: '_img/_lightbox/lightbox-btn-loading.gif',
			imageBtnClose: '_img/_lightbox/lightbox-btn-close.gif',
			imageBtnPrev: '_img/_lightbox/lightbox-btn-prev.gif',
			imageBtnNext: '_img/_lightbox/lightbox-btn-next.gif'				  									  
		});
		

	
});
