$(document).ready(function(){
	LoadContents()
	
	var newsoption1 = {
	  firstname: "mynews",
	  secondname: "showhere",
	  thirdname:"news_display",
	  fourthname:"news_button",
	   newsspeed:'6000',
	   nexttitle:'',
	   effectis:0
	}
	$.init_news(newsoption1);
	var myoffset=$('#news_button').offset();
	var mytop=myoffset.top-1;
	$('#news_button').css({top:mytop});


});

//--(LOAD NEWS FROM XML)--
function LoadContents(){
	$.ajax({
		url:'../xml/contents.xml',
		dataType: 'xml',
		async: false,
		success: function(xml){
			$('#mynews').empty()
			$(xml).find('page').each(function(){
				id = $(this).attr('id');
				title = $(this).find('title').text();
				content = $(this).find('content').text();
				$('#mynews').append('<div id="news' + id + '" class="news_style" rel="' + title + '" ><h3>' + title + '</h3><p>' + content + '</p></div>')
			});	
		}
	});
}
//----