/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/*<script type="text/javascript" src="skrypty.js"></script>*/
$(document).ready(function() {

	$(".boxRealizacja").hover(
		function () {
			$(this).children().show();
		},
		function () {
			$(this).children().hide();
		}
		);


	/*$.preloadImages("next.gif", "prev.gif", "loading.gif");
	$(".gallery_thumbnail").fadeTo("fast", 0.5);
	ChangeMainImage( 1 );

	$(".gallery_thumbnail")
	.click( function() {
		ChangeMainImage( $(this).attr('id') );
		SetTitle();
	})/*.mouseover( function() {
	  $(this).fadeTo("fast", 1.0);
	})
	.mouseout( function() {
	  $(this).fadeTo("fast", 0.5);
	})*/;

	/*$("#gallery_right_area")
	.click( function() {
		$current_id = $(".current").attr("id");
		$current_id++;
		$thumbs_count = $(".gallery_thumbnail").size();

		if ( $current_id > $thumbs_count ) {
			$current_id = 1;
		}

		ChangeMainImage( $current_id );
		SetTitle();
	});

	$("#gallery_left_area")
	.click( function() {
		$current_id = $(".current").attr("id");
		$current_id--;
		$thumbs_count = $(".gallery_thumbnail").size();

		$("#gallery_left_arrow").hide();

		if ( $current_id < 1 ) {
			$current_id = $thumbs_count;
		}

		ChangeMainImage( $current_id );
		SetTitle();
	});*/
});
