// JavaScript Document
			$(document).ready(function(){
				//Examples of how to assign the ColorBox event to elements.
				/*$('a[@rel*=lightbox]').colorbox({transition:"fade"});*/
				$("a[rel='lightbox']").colorbox({transition:"fade"});
				$(".colorbox").colorbox({iframe:true, width:500, height:500});
				$(".flash").colorbox({iframe:true, width:700, height:500});
				
				//onclick reset input value
				$('.input_kontak').click(
					function() {
						if (this.value == this.defaultValue) {
							this.value = '';
						}
					}
					);
				$('.input_kontak').blur(
					function() {
						if (this.value == '') {
							this.value = this.defaultValue;
						}
					}
				);		
				$('.textarea_kontakt').click(
					function() {
						if (this.value == this.defaultValue) {
							this.value = '';
						}
					}
					);
				$('.textarea_kontakt').blur(
					function() {
						if (this.value == '') {
							this.value = this.defaultValue;
						}
					}
				);					
			});				