$(document).ready(function() {
	$("a[rel=design]").click(function() {
		$("#design").slideToggle("slow");
		$("#video").slideUp("normal");
		$("#webdesign").slideUp("normal");
	});
	
	$("a[rel=video]").click(function() {
		$("#design").slideUp("normal");
		$("#video").slideToggle("slow");
		$("#webdesign").slideUp("normal");
	});
	
	$("a[rel=webdesign]").click(function() {
		$("#design").slideUp("normal");
		$("#video").slideUp("normal");
		$("#webdesign").slideToggle("slow");
	});
	
	$("a#fb").click(function() {
		$(this).next().slideToggle("normal");
	});
	

	$("a[rel=obraz]").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'elastic',
		'titlePosition' 	: 'inside',
		'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
			return '<span id="fancybox-title-inside"><div id="txt">Image ' + (currentIndex + 1) + '/' + currentArray.length + (title.length ? ' &nbsp; <b>' + title +'</b>' : '') + ' <iframe src="http://www.facebook.com/plugins/like.php?href='+ currentArray[currentIndex] +'&amp;layout=button_count&amp;show_faces=false&amp;width=200&amp;action=like&amp;colorscheme=light&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:200px; height:21px;" allowTransparency="true"></iframe></div></span>';
		}
	});
	
	
	
	$("a[rel=flash]").click(function()
	{
		var data = $(this).metadata();	
		$.fancybox({
			'padding'			: 0,
			'type'				: 'swf',
			'autoScale'     	: false,
			'transitionIn'		: 'none',
			'transitionOut'		: 'elastic',
			'href'				: this.href,
			'width'				: data.w,
			'height'			: data.h
		});
		return false;
	});
});
