jQuery(function() {
	jQuery("#homepage-news-content").jCarouselLite({
		vertical: true,
		hoverPause:true,
		visible: 1,
		auto:5000,
		speed:2000
	});
});

jQuery(document).ready(function() {
  
jQuery('.indiv-job-container h2').each(function(val, text) {
    jQuery('#position').append('<option value="'+ jQuery(this).text() +'">' + jQuery(this).text() + '</option>');
    //jQuery('#receiver').val(jQuery(this).text());
    
    jQuery('#position').change(function() {
      jQuery('#receiver').val(jQuery(this).val());
    });
    
});


//alert(jQuery('#position').val()); 




 

});

