$(document).ready(function() {
	
	/* IE6 Alert
	---------------------------------------- */
	
	if($.browser.msie && $.browser.version == 6) {
		$('body').html('<div id="ie6">If you are still using IE 6 your IQ is to low to visit my web site.<br /> Buff your IQ and try <a href="http://www.mozilla.com/en-US/firefox/firefox.html">another browser</a>.</div>');
	}
	
	/* Scaling background
	---------------------------------------- */
	
	$(window).bind('resize load', function() {

		var windowx = $(window).width();
		var windowy = $(window).height();

		var imgx = $('#scale img').width();
		var imgy = $('#scale img').height();

		$('#scale').css('width',windowx);
		$('#scale').css('height',windowy);

		if((windowx / windowy) >= (imgx / imgy)) {
			$('#scale img').css('width', windowx);
			$('#scale img').css('height', (imgy / imgx) * windowx);
		} else {
			$('#scale img').css('width',(imgx / imgy) * windowy);
			$('#scale img').css('height',windowy);
		}

	});
	
	/* Flickr
	---------------------------------------- */
	
	var url = 'http://api.flickr.com/services/feeds/photos_public.gne?id=23952008@N02&format=json&jsoncallback=?';
	$.getJSON(url, function(data) {
		$.each(data.items, function(i, item) {
			if(i < 8) $('<img/>').attr('src', item.media.m.replace('_m','_s')).appendTo('.flickr')
			.wrap('<a href="' + item.link + '" target="_blank"></a>');
		});
	});
	
	/* About and contact
	---------------------------------------- */
	
	$('#about, .about .close').click(function(event) {
		event.preventDefault();
		$('.about').toggle();
	});
	
	$('#contact').attr('href', 'mailto:' + 'liviuoros' + '@' + 'gmail.com');
	
});
