/* copyrigths 2011 picios */
/* revolweb */
$(document).ready(function(){

	/*
	 * site menu behaviour
	 */
	 /*
	$('.lewa ul li:first>a').attr('id', 'menu1');	
	$size_of_top_li = $('.lewa > ul > li > a').size();
	for ($i=4; $i<=$size_of_top_li; $i++) {
		$('.lewa > ul > li > a').eq($i).attr('id', 'menu4');	
	}
	* */
	$('.gorne ul li').hover(
		function () {
			//show its submenu
			$('ul', this).show();
			$('ul ul', this).hide();
		},
		function () {
			//hide its submenu
			$('ul', this).hide();
		});
	$('.boczne ul li').hover(
		function () {
			//show its submenu
			$('ul', this).show();
			$('ul ul', this).hide();
		},
		function () {
			//hide its submenu
			$('ul', this).hide();
		});




	/*
	 * google size adjusting to max box size like
	 * youtube and googlemaps
	 */
	$("div.content_google iframe").each(function() {
		// ie_dump contains real width of the section consistance
		$container_width = $(this).parent().siblings(".ie_dump").width();
		$youtube_height = $(this).height();
		$youtube_width = $(this).width();
		$new_height = ($youtube_height / $youtube_width) * $container_width;

		$(this).width($container_width);
		$(this).height($new_height + 22);
	});




	/*
	 * gallery div height adjusting for all the same
	 */
	$max_description_height = 0;
	$(".gallery_image_container").each(function() {
		if ($(this).height() > $max_description_height) {
			$max_description_height = $(this).height();
		//$(".gallery_image_container").
		}
	}).height( $max_description_height  );

});

