﻿$(document).ready(function(){
    $('.slideshow').cycle({
        fx:'fade',
        timeout:12000,
        speed:1000,
		cleartype:  1 // enable cleartype corrections 
        });
    $('#map').jmap('init', {
        'mapShowjMapsIcon':false,
        'mapCenter':[41.127122,29.024624]        
    });     
    $('#map').jmap('AddMarker', {
        'pointLatLng': [41.127122,29.024624]
		//'pointHTML': '<strong>This was added with jMaps</strong>'
    });
	
});