
if(window.jQuery && jQuery.ready) {
	jQuery(document).ready(
	  function() {
		var href;
		jQuery('.links-module .cs-container-body').each(function(){		
		 jQuery('select', this).prepend('<option value=" " selected="selected"> </option>');
		 jQuery('select', this).change(function() 
    		{ 
				href=jQuery(this).next('a').attr('href');
        		window.location = href;
    		});
		 	jQuery('a.CommandButton', this).css('display','none');
														   });
		jQuery('.links-module .cs-container-body').css('display','block');
	});
}

