closeMessageBox = function() {
	$("#infoClose").bind("click", function() {
		$("#messageBoxWrapper").hide();
	});
}

fadeThumbs = function() {
	var img = ".thumbs ul li img";
	var opacity = 0.6;

	$(img).each( function(){
		$(this).css('opacity', opacity);
	}),
	$(img).bind("mouseenter",function(){
		$(this).fadeTo(600, 1);
	}),
	$(img).bind("mouseleave",function(){
		$(this).fadeTo(600, opacity);
	});
}


toggleSearch = function()
{
	$("input#q").click(function() {
		if($(this).val() == 'pretraga')
		{
			$(this).val('');
		}
	});
	$("input#q").blur(function() {
		if($(this).val() == '')
		{
			$(this).val('pretraga');
		}
	});
}


applicaton = function() {
	$("ul.tabs li").click(function () {
		selectedTab = $(this).attr('id');
		if(selectedTab == 'contactTab') { selected = 'contact'; }
		if(selectedTab == 'applicationTab') { selected = 'application'; }
		$("ul.tabs li").removeClass('selected');
		$(this).addClass('selected');
		$("#contacts").children().hide();
		$("#" + selected).show();
	});
}


$(document).ready(function() {
	closeMessageBox();
	$('a[rel*=facebox]').facebox();
//	fadeThumbs();
	toggleSearch();
	applicaton();
});

