', html or false to disable */
show_title: true, /* true/false */
allow_resize: false, /* Resize the photos bigger than viewport. true/false */
autoplay: true,
keyboard_shortcuts: true /* Set to false if you open forms inside prettyPhoto */
});
$(".inm_if_vp_nav_item").mouseover(function(){
$('.inm_if_vp_nav_item_button', this).stop(true, true).animate({
opacity: 1
}, 300, function() {
});
var cssOnHover = {
'font-weight' : 'bold',
'color' : '#F68A43'
}
$('.inm_if_vp_nav_item_title', this).stop(true, true).css(cssOnHover);
}).mouseout(function(){
$('.inm_if_vp_nav_item_button', this).stop(true, true).animate({
opacity: 0.65
}, 600, function() {
});
var cssOffHover = {
'font-weight' : 'normal',
'color' : '#FFFFFF'
}
$('.inm_if_vp_nav_item_title', this).stop(true, true).css(cssOffHover);
});
$(".inm_if_vp_nav_item").live("click", function(){
var vid = this.id + '_video';
$.prettyPhoto.open(vid,'','');
console.log(vid);
});
$("#ifVideoPopupClose").live('click', function () {
$.prettyPhoto.close();
});
});
-->