jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
	rtl: true,
	visible: 8,
	scroll: 8,
	wrap: "circular"
    });
});

jQuery(document).ready(function(){
		jQuery('.form-field').each( function () {
		jQuery(this).val(jQuery(this).attr('defaultVal'));
		jQuery(this).css({color:'#888888'});
		});
		jQuery('.form-field').focus(function(){
		if ( jQuery(this).val() == jQuery(this).attr('defaultVal') ){
		jQuery(this).val('');
		jQuery(this).css({color:'#222222'});
		}
		});
		jQuery('.form-field').blur(function(){
		if (jQuery(this).val() == '' ){
		jQuery(this).val(jQuery(this).attr('defaultVal'));
		jQuery(this).css({color:'#888888'});
		}
		});
		});
jQuery(document).ready(function() {
            jQuery(".tagform").tagEditor(
            {
                separator: ',',
				completeOnSeparator: true,
				imageTag: true,
                completeOnBlur: true
            });
        });
