jQuery.noConflict();

jQuery(document).ready(function() {

						   
jQuery('.ff').each(function() {
    var default_value = this.value;
    jQuery(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
            jQuery(this).css('color', '#183f25');
        }
    });
    jQuery(this).blur(function() {
        if(this.value == '') {
            jQuery(this).css('color', '#cccccc');
            this.value = default_value;
        }
    });
});

							   
							   
		var imgWrapper = jQuery('.slide_v1');
		// only show the first image, hide the rest
		imgWrapper.hide().filter(':first').show();
		
		jQuery('table.recentlist tr td a').click(function () {
		
			// check if this item doesn't have class "current"
			// if it has class "current" it must not execute the script again
			if (this.className.indexOf('current') == -1){
				imgWrapper.hide();
				imgWrapper.filter(this.hash).fadeIn(500);
				
				jQuery('table.recentlist tr td a').removeClass('current');
				jQuery(this).addClass('current');
			}
			return false;
		});
		
    jQuery('#mycarousel').jcarousel({
		scroll: 1
		});

	equalHeights("jcarousel-item"); 

	});
