//	GREEN LEMON globals
// ----------------------------------------------------------------
	$(document).ready( function() {
// ----------------------------------------------------------------

// random element fade in

$('#content, #footer').each( function(index, element) {
	$(element)
		.delay( 1000 + Math.round(Math.random()*1500) )
		.fadeTo(1000, 1);
	});


// --------------------------- external links

			$('a[rel="external"]').click( function() {
        		window.open( $(this).attr('href') );
        		return false;});
			
// --------------------------- no spam mail

			$('a[rel="mail"]').each( function() {
			   this.href = this.href.replace('(at)',"@");
       		   return true;});

// --------------------------- blur remove

			$("a").focus(function() {
  			$(this).blur();
			});

//zatrzymanie każdego linku i fadeout contenta

            $('a[rel=""]').click(function(){
                $('#content').fadeOut();
                $('#footer').fadeOut();
                 setTimeout("nav('"+this.href+"')",500);
            	 return false;
       		});
			
//loading obrazków portfolio

//	$('.portfolio_print_item img').hide().fadeIn(300);
//	$('.portfolio_item a img').hide().fadeIn(300);	
	


// ----------------------------------------------------------------
		});
// ----------------------------------------------------------------

		function nav(href){
		location.href=href;
		};
