$(function() {

	$('#taxonomy1_id,#taxonomy2_id').change(function() {
		var $s = $(this);
		$.get('search/get_children/'+$s.val()+'?ajax=1',{},function(response){
					
			//$s=$(this).next().empty().append($(document.createElement('option')).val(-1).text('---'));
			// Empty out the select boxes, set defaule value and return the first selectbox to $s
			next = $s.nextAll('select[id!=city_id]').find('option[value!=0]').remove().end().eq(0); //.empty().each(function(){var t=$(this).append($(document.createElement('option')).val(-1).text(selectTitle[this.id]);).eq(0);

			if (response.success) {				
				$.each(response.items, function(i,taxonomy){ 
					
					$(document.createElement('option')).val(taxonomy.id).text(taxonomy.name).appendTo(next);
				});
			}					
		},'json');
		
	});
	$('#newsbody ul li a').click(function(){
		var windowWidth=470;
		var windowHeight=450;
		var centerWidth = (window.screen.width - windowWidth) / 2;
		var centerHeight = (window.screen.height - windowHeight) / 2;
		window.open(this.href, 'news','scrollbars=yes,resizable=0,width=' + windowWidth + 
        ',height=' + windowHeight + 
        ',left=' + centerWidth + 
        ',top=' + centerHeight);

		return false;
	});
});
