/**
 * Copyright (C) 2010 Dawid Zarrach.
 * Contact Dawid Zarrach (kontakt@dawid.sopot.pl)
 *
 * This code is really lame but we're tired ;)
 *
 */

var $jq = jQuery.noConflict();
$jq(document).ready(function($){

    Cufon.set('fontFamily', 'Oklahoma').replace('h3', {
        textShadow: '1px 1px #994c00, 1px -1px #994c00, -1px 1px #994c00, -1px -1px #994c00'
    })('.cufon', {
/*
        textShadow: '1px 1px #994c00, 1px -1px #994c00, -1px 1px #994c00, -1px -1px #994c00'
    })('h2', {
*/
        textShadow: '1px 1px #994c00, 1px -1px #994c00, -1px 1px #994c00, -1px -1px #994c00'
    });
    
    $("#content a img").css({
        'opacity': '1'
    });
	
    $('#content a img').hover(function(){
        $(this).stop().fadeTo(200, 0.6);
    }, function(){
        $(this).stop().fadeTo(200, 1);
    })
	
	$('a[rel="lightbox"]').colorbox({rel:'nofollow', maxWidth: '100%', maxHeight: "100%" });
});