﻿// GLOBAL CODES
//****************************************************************

// #1 - Galeri ( jQuery Galleria )
// #2 - gMaps ( jQuery gMaps )
// #3 - 

//****************************************************************


// #1 - Galeri ( jQuery Galleria )
//****************************************************************
jQuery(function($) {
		
		$('.gallery_demo_unstyled').addClass('gallery_demo'); // adds new class name to maintain degradability
		
		$('ul.gallery_demo').galleria({
			history   : false, // activates the history object for bookmarking, back-button etc.
			clickNext : true, // helper for making the image clickable
			insert    : '#main_image', // the containing selector for our main image
			onImage   : function(image,caption,thumb) { // let's add some image effects for demonstration purposes
				
				// fade in the image & caption
				if(! ($.browser.mozilla && navigator.appVersion.indexOf("Win")!=-1) ) { // FF/Win fades large images terribly slow
					image.css('display','none').fadeIn(1000);
				}
				caption.css('display','none').fadeIn(1000);
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// fade out inactive thumbnail
				_li.siblings().children('img.selected').fadeTo(500,0.6);
				
				// fade in active thumbnail
				thumb.fadeTo('fast',1).addClass('selected');
				
				// add a title for the clickable image
				image.attr('title','Sonraki >>');
			},
			onThumb : function(thumb) { // thumbnail effects goes here
				
				// fetch the thumbnail container
				var _li = thumb.parents('li');
				
				// if thumbnail is active, fade all the way.
				var _fadeTo = _li.is('.active') ? '1' : '0.6';
				
				// fade in the thumbnail when finnished loading
				thumb.css({display:'none',opacity:_fadeTo}).fadeIn(1500);
				
				// hover effects
				thumb.hover(
					function() { thumb.fadeTo('fast',1); },
					function() { _li.not('.active').children('img').fadeTo('fast',0.6); } // don't fade out if the parent is active
				)
			}
		});
	});
	
	

/* Google-Maps
***************************************************************************
 * Data of the hotspots locations for each place are declared as JS object
 * each hotspot is defined by the next properties:
 * - simpleContent: String with the HTML content in the info window.
 * - maximizedContent : URL of the HTML page (AJAX loaded) of the maximized info window.
 * - latitude: latitude of the geographic poing (you can use infopanel for obtain that)
 * - longitude: longitude of the geographic poing (you can use infopanel for obtain that)
 * - zoom: zoom level for hotspot links
 * - icon: url of the custom icon for this place
 */
//var locations_data = { locations: [
//	{
//		simpleContent: "info",
//		maximizedContent: "",
//		latitude: 41.030560,
//		longitude: 28.950433,
//		zoom:  16,
//		icon: "marker.png"
//	},
////	{
////		simpleContent: "Point 2",
////		maximizedContent: "info.htm",
////		latitude: 41.030860,
////		longitude: 28.951133,
////		zoom: 16,
////		icon: "marker.png"
////	}
//]};

//$(document).ready(function(){
//	$("#gmaps_container").gmaps({
//		data: locations_data,
//		infopanel: $("#gmaps_info").get(0),
//		relativepath: "js/"
//	});
//});