// flowplayer

var videopath = "http://www.ihranwalt24.de/uploads/swf/flowplayer/";
var swfplayer = videopath + "videos/flowplayer-3.1.5.swf";
var swfcontent = videopath + "videos/flowplayer.content-3.1.0.swf";
var swfcaptions = videopath + "videos/flowplayer.captions-3.1.4.swf";

// fancys
$(document).ready(function() {

  // Base
  $(".contentOnly").fancybox({
    'autoDimensions': false,
    'padding': 10,
    'showCloseButton': true,
    'autoScale': false,
    'transitionIn': 'none',
    'transitionOut': 'none',
    'type': 'iframe',
    'frameWidth': 550,
    'frameHeight': 500,
    'overlayShow': true,
    'overlayOpacity': 0.6,
    'overlayColor': '#777'
  });
  
  $('#blog #boxR1').css('cursor','pointer');
  $('#blog #boxR2').css('cursor','pointer');
  $('#blog #boxR3').css('cursor','pointer');
  
  // Blog
  $('#blog #boxR1 ul.bullet').hide();
  $("#blog #boxR1").click(function () {
     $("#boxR1 ul.bullet").toggle("slow");
  });

  $('#blog #boxR2 ul.bullet').hide();
  $("#blog #boxR2").click(function () {
     $("#boxR2 ul.bullet").toggle("slow");
  });
  
  $('#blog #boxR3 ul.bullet').hide();
  $("#blog #boxR3").click(function () {
     $("#boxR3 ul.bullet").toggle("slow");
  });
  
  // Blog search
  $('#s').val('Suche nach z.B.: PIP...');
  $('#s').toggletextfieldvalue();
  
});

