
$(document).ready(function() {
/*
*   Examples - images
*/

$("a#example1").fancybox({
'titleShow'     : false
});

$("a#example2").fancybox({
'titleShow'     : false,
'transitionIn'  : 'elastic',
'transitionOut'  : 'elastic'
});

$("a#example3").fancybox({
'titleShow'     : false,
'transitionIn'  : 'none',
'transitionOut'  : 'none'
});

$("a#example4").fancybox();

$("a#example5").fancybox({
'titlePosition'  : 'inside'
});

$("a#example6").fancybox({
'titlePosition'  : 'over'
});

$("a[rel=example_group]").fancybox({
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'titlePosition'   : 'over',
'titleFormat'       : function(title, currentArray, currentIndex, currentOpts) {
return '<span id="fancybox-title-over">Image ' +  (currentIndex + 1) + ' / ' + currentArray.length + '</span>';
}
});

/*
*   Examples - various
*/

$("#various1").fancybox({
'titlePosition'    : 'inside',
'transitionIn'    : 'none',
'transitionOut'    : 'none'
});

$("#various2").fancybox({
ajax : {
type  : "POST",
example  : 'myexample=test'
}
});

$("#various3").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#contactwindow1").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#contactwindow2").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#contactwindow3").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#contactwindow4").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#contactwindow5").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#contactwindow6").fancybox({
'width'        : '75%',
'height'      : '75%',
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none',
'type'        : 'iframe'
});

$("#various4").fancybox({
'padding'           : 0,
'autoScale'       : false,
'transitionIn'    : 'none',
'transitionOut'    : 'none'
});
});

