$(document).ready(function() {
	
	
	// Form Input
	$('.change').focus(function() {
	if (this.value == this.defaultValue) {
	this.value = ''; }});
	$('.change').blur(function() {
	if (this.value == '') {
	this.value = this.defaultValue; }});	
	
	//Fancybox
	$("a.fancybox").fancybox({'hideOnContentClick': true});
	$("a.group").fancybox({
		'transitionIn'	:	'elastic',
		'transitionOut'	:	'elastic',
		'speedIn'		:	600, 
		'speedOut'		:	200, 
		'overlayShow'	:	false
	});
	
	// Filter - show / hide
	$("a.switch").click(function(){
			if ($(this).hasClass("hide")) {
				$(this).removeClass("hide");
				$(this).html("Prikaži filter");
				$(".filter #filter-form").fadeTo("normal",0);
				$(".filter #filter-form").slideToggle("normal");
				$(".filter").css("border","none");
				$(".filter .bottom").fadeTo("normal",0);
			} else {
		$(".filter #filter-form").slideToggle("normal");
		$(".filter #filter-form").fadeTo("normal",1);	
		$(".filter").css("border","1px dotted #999999");
		$(".filter .bottom").fadeTo("normal",10);
		$(this).html("Sakrij filter");
		$(this).addClass("hide");
		}
	});
	
	$(function(){
	$(".cms-content table tr:first-child").addClass("head");
	});
	
});

	
