/**
* Laurynas Karvelis, made.By
* http://www.by.lt
* 2009
*/

// this event fires as soon as DOM is loaded successfully, so it's fired faster than $(window).ready()
jQuery(function(){
	
});

// thisi event is triggered only when all DOM elements are downloaded and loaded
$(window).ready(function (){
	$('a.colorbox').colorbox({transition:"fade"});
});