//var folder = "/1st-venice-hotels/book_venice/";
var folder = "/book_venice/";
$(document).ready(function() {
	$("#currency option").each(function () {
		if ($(this).text() == 'EUR')
		{
			$(this).attr('selected', 'yes');
			return;
		}
	});
});
