$(document).ready(function() {

	$("ul#topnav li").hover(function() { //Hover over event on list item
		$(this).css({ 'background' : '#318cca url(topnav_active.gif) repeat-x'}); //Add background color and image on hovered list item
		$(this).find("span").slideDown('fast'); //Show the subnav
	} , function() { //on hover out...
		$(this).css({ 'background' : 'none'}); //Ditch the background
		$(this).find("span").hide('fast'); //Hide the subnav
	});
	
	$('#piyasaslide').bxSlider({
    auto: true,
    autoControls: true,
	//ticker: true,
    //tickerSpeed: 2500
	autoControlsSelector: '#auto',
	prevImage: '/images/prev1.png',
	nextImage: '/images/next1.png',
	stopImage: '/images/pause.png',
	startImage :'/images/play.png', 
	prevSelector : '#prev',
	nextSelector : '#next',
	stopSelector : '#stop'
	
  });
  
  $('#weather_top').bxSlider({
    mode: 'vertical',
    auto: true,
	speed:2000,
	controls: false,
    randomStart: true
  });
  
  
  $('.habermetin').jfontsize();

});
