﻿
$(document).ready(function () {
    $.ajax({
        type: "GET",
        url: "xml/photo.xml",
        dataType: "xml",
        success: xmlParser
    });
	
});

function xmlParser(xml) {
	$(xml).find("item").each(function () {
	$("#slider1").append('<li><a href="' + $(this).find("link").text() + '" class="png_dd"><img src="' + $(this).find("path").text() + '" width="560" height="241" alt="" /></a></li>');
    });
	
	$('#slider1').bxSlider();
	
	pleft();
	$(window).resize(function(){
		pleft();
		
	});
};

function pleft(){
	var w = ($(window).width() - 960) / 2;
	$('#sliderwrap').css("left",(w+150)+"px");
}
