jQuery(document).ready(function(){
  
  if(jQuery("#showcase").length > 0){
    jQuery("#showcase").awShowcase( {
      width:          800,
      height:         510,
      auto:         false,
      interval:       3000,
      continuous:       false,
      loading:        false,
      tooltip_width:      190,
      tooltip_icon_width:   32,
      tooltip_icon_height:  32,
      tooltip_offsetx:    18,
      tooltip_offsety:    0,
      arrows:         true,
      buttons:        true,
      btn_numbers:      false,
      keybord_keys:     true,
      mousetrace:       false,
      pauseonover:      true,
      transition:       'vslide', // vslide/hslide/fade 
      transition_speed:   500,
      show_caption:     'onload', // onload/onhover/show
      thumbnails:       false,
      thumbnails_position:  'outside-last', // outside-last/outside-first/inside-last/inside-first
      thumbnails_direction: 'vertical', // vertical/horizontal
      thumbnails_slidex:    1 // 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc.
    });    
  }
/*	
	if(jQuery("#showcase2").length > 0){
    jQuery("#showcase2").awShowcase( {
      width:          871,
      height:         440,
      auto:         false,
      interval:       3000,
      continuous:       false,
      loading:        false,
      tooltip_width:      190,
      tooltip_icon_width:   32,
      tooltip_icon_height:  32,
      tooltip_offsetx:    18,
      tooltip_offsety:    0,
      arrows:         false,
      buttons:        false,
      btn_numbers:      false,
      keybord_keys:     true,
      mousetrace:       false,
      pauseonover:      true,
      transition:       'hslide', // vslide/hslide/fade 
      transition_speed:   500,
      show_caption:     'onload', // onload/onhover/show
      thumbnails:       true,
      thumbnails_position:  'outside-first', // outside-last/outside-first/inside-last/inside-first
      thumbnails_direction: 'horizontal', // vertical/horizontal
      thumbnails_slidex:    1 // 0 = auto / 1 = slide one thumbnail / 2 = slide two thumbnails / etc.
    });    
  }
*/  

  //tabs
  var $tabs = jQuery("#tabs").tabs();

  jQuery("a.tabTriggerLink").live('click', function(e){
    var th = jQuery(e.target);
    var thishref = th.attr("href");
    thishref = thishref.split("-");
    var tabindex = thishref[1];
 
    $tabs.tabs('select', tabindex);
		
    return false;
  });

  jQuery("a.select-konfiguraciok").live('click', function(e){
		$tabs.tabs('select', 2);
		$(this).find("a").attr("href");

		return false;
	});

	
  //media tabs
  jQuery("#mediaajanlat-tabs").tabs();
	
	//contact form
	/* jQuery("#dialog").dialog(); */	

})


