	jQuery(document).ready(function($) {

		$list = jQuery('.contact-allegro-page #contact_form  a.short_link');
		
		$items = "";
		jQuery.each($list, function(key, value) { 
			$items += jQuery(value).html() + "<br/>";
		});
		jQuery('#short_list_input').val( $items );	
		
		
		// only load these function if we are in the enquire page 'contact-allegro-page'
		if ( jQuery('body').hasClass('contact-allegro-page') )
		{
			jQuery('.contact-allegro-page #contact_form .short_close').live('click', function (event ) {
				
				event.preventDefault();
				jQuery(this).parent().remove();
				
				$values = jQuery('.contact-allegro-page #contact_form  .shortlist_items').html();
				jQuery.cookie('allegro_favourite', $values,{ path: '/'});
				
				$list = jQuery('.contact-allegro-page #contact_form  a.short_link');
				
				$items = "";
				jQuery.each($list, function(key, value) { 
					$items += jQuery(value).html() + "<br/>";
				});
						
				jQuery('#short_list_input').val( $items );		
			
				
			});						
		}
		
	});
