$(document).ready(function() {
	var topLetterPosition = $('.top-letter').position();
	$('#contact-box').css({'top' : topLetterPosition.top+20, 'left' : topLetterPosition.left-495});
	
	$('.letter').click(function(){
		$('#contact-box').hide();
		var position = $(this).position();
		var leftPosition = (position.left-495);
		if ($(this).hasClass('bot-letter')==true) {
			var topPosition = (position.top-420);
		} else {
			var topPosition = (position.top+20);
		}
		$('#contact-box').css({'top' : topPosition, 'left' : leftPosition})
		$('#contact-box').fadeIn();
		return false;
	});
	$('.close').click(function(){
		$(this).parents('#contact-box').fadeOut();
		return false;
	});
});
var videos = [
	'<object width= "575" height="350"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/wOh3OkaneU0&ap=%2526fmt%3D18&autoplay=0&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/wOh3OkaneU0&ap=%2526fmt%3D18&autoplay=0&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350" wmode="transparent"></embed></object>',
	'<object width= "575" height="350"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/UhKQvs7Os2M&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/UhKQvs7Os2M&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350" wmode="transparent"></embed></object>',
	'<object width= "575" height="350"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/-QyWe6d5slg&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/-QyWe6d5slg&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350" wmode="transparent"></embed></object>',
	'<object width= "575" height="350"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/MzmkA_YTvqc&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/MzmkA_YTvqc&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350" wmode="transparent"></embed></object>',
	'<object width= "575" height="350"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/qg4C6aqBrpk&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/qg4C6aqBrpk&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350" wmode="transparent"></embed></object>',
	'<object width= "575" height="350"><param name="wmode" value="transparent" /><param name="movie" value="http://www.youtube.com/v/wcGbhQfngeY&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/wcGbhQfngeY&ap=%2526fmt%3D18&autoplay=1&rel=0&fs=1&color1=0xCCCCCC&color2=0x999999&border=0&loop=0" type="application/x-shockwave-flash" allowfullscreen="true" width="575" height="350" wmode="transparent"></embed></object>'
];
$(function(){
	$('.video').click(function(){
        html = videos[this.href.replace(/.*#v/, '')];
        if ($.browser.msie) {
            html = html.replace(/&ap[^&]*&/g, '&');
        }
		$('#videocont').html(html);
		$('.video').removeClass('nvv');
		$(this).addClass('nvv');
		return false;
	});
})
$(function () {
    var html = videos[0];
    if ($.browser.msie) {
        html = html.replace(/&ap[^&]*&/g, '&');
    }
    $('#videocont').html(html);
})

