// JavaScript Document

function startSlide() {
	$('#mainPhoto').crossSlide({
		fade: 1
	}, [
		{ src: webURL + 'images/headerPhoto_1.jpg', from: 'center 1x', to:   'center 2x', time: 6 },
		{ src: webURL + 'images/headerPhoto_2.jpg', from: 'center 2x', to:   'center 1x', time: 6 },
		{ src: webURL + 'images/headerPhoto_3.jpg', from: 'center 1x', to:   'center 2x', time: 6 },
		{ src: webURL + 'images/headerPhoto_4.jpg', from: 'center 2x', to:   'center 1x', time: 6 }
	]);
}

function openRadio() {
	open('http://www.onradio.gr/Loading.php?id=410','miniwin','titlebar=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=277,height=442');
	return;
}

$('#newsletter input').live('focus', function() {
	$(this).val('');
});

$(function() {
	$('#languages ul').each(function() {
		var html = $('<select onchange="window.location.href=this.value;" ></select>');

		$(this).find('a').each(function() {
			var option = $('<option ></option>');
			option.attr('value', $(this).attr('href')).html($(this).text());
			
			if ($(this).hasClass('active')) {
				option.attr('selected', 'selected');
			}
			
			html.append(option);
		});

		$(this).replaceWith(html);
	});
});
