$(document).ready(function(){
	$.easy.navigation();
	$.easy.tooltip();
	$.easy.popup();
	$.easy.external();
	$.easy.rotate();
	$.easy.forms();
	$.easy.showhide();
	$.easy.jump();
	
	//Examples of how to assign the ColorBox event to elements
	$("a.lightwindow").colorbox({
		previous: 'önceki',
		next: 'sonraki',
		close: 'kapat',
		slideshowStart: 'slide gösterisini başlat',
		slideshowStop: 'slide gösterisini durdur',
		current: '{current} / {total}',
		maxWidth: '90%'
	});
	
	$("#Country").change(function(){
		var value = $(this).val();
		if(value === "Turkey"){ 
			$("#City").show();
			$("#AnotherCity").hide();
		}
		else {
			$("#City").hide();
			$("#AnotherCity").show();
		}
	})
	
});

var addthis_share = {
	templates: { twitter: '{{title}} @ {{url}}' }
}

