jQuery.noConflict();
jQuery(document).ready(function(){

	jQuery('#photos').galleryView({
		panel_width: 750,
		panel_height: 380,
		frame_width: 100,
		frame_height: 100,
		border: '0px',
		show_captions: true,
		pause_on_hover: true,
		nav_theme: 'lite'
	});
	
	/* Display Active Tab Content on Page Load */
	var activeTabTemp = jQuery('.c_controls a.active').attr('id');
	var activeTab = activeTabTemp.replace('c','cd');
	jQuery('.c_content li#'+activeTab+'').show();
	
	/* Display Tab Content on Tab Click */
	jQuery('.c_controls a').click(function(){
		jQuery(this).addClass('active').parent().siblings().children().removeClass('active');
		var clTabTemp = jQuery(this).attr('id');
		var clTab = clTabTemp.replace('c','cd');
		jQuery('.c_content li#'+clTab+'').show().siblings().hide();
		return false;
	});
	
	/* Removing tag 'p' under 'img'
	jQuery('.entry-anons p > img').each(function(){
		var par = jQuery(this).parent('p');
		jQuery(this).insertAfter(par);
		par.remove();
	});
 */


	/* Display/Hide  */
	contr = jQuery('#controls');
	jQuery('.featured').hover(
		function(){contr.show();},
		function(){contr.hide();}
	);
	
});
