var sel_id = 1;

$(document).ready(function(){ 
    
	$(window).load(drop_down_list());	
	
});


function drop_down_list(id){
		$('#loader').show(); // Hide the Loading...
		$('#list').hide(); // Show the drop down
		
		id = (id != undefined && id != '')? id : sel_id;
		sel_id = id;
		
	
		$.post("get-press-releases.php",{id:id} ,function(data)
        {
				//alert(data);
				$("#list").html(data);
				$('#loader').hide(); // Hide the Loading...
				$('#list').show(); // Show the drop down
				
	    });
}




