$(document).ready( function() {

	/*===========================
	*
	* Date Created: 30/05/2010
	* Last Update: 30/05/2010
	*	Source: -
	* Description: -
	*
	*===========================*/
		
	$("p:last-child").addClass('last-child');
	
	// clear input field
	$('.setclear').each(function() {
		var default_value = this.value;
		$(this).focus(function(){
			if(this.value == default_value) {
				this.value = '';
			}
		});

		$(this).blur(function(){
			if(this.value == '') {
				this.value = default_value;
			}
		});
	});
	
	$(".post-type").change(function() {
		$(this).submit()
	})		

	/*===========================
	*
	* Pluginname: Superfish v1.4.8
	* Date Created: 30/05/2010
	* Last Update: 30/05/2010
	*	Source: http://users.tpg.com.au/j_birch/plugins/superfish/
	* Description: dropdown menu
	*
	*===========================*/
	
	if ( $('ul.sf-menu') ) {
  
  	$("ul.sf-menu").supersubs({
  		minWidth: 8,
  		maxWidth: 15,
  		extraWidth: 1
  	}).superfish({
  		delay: 500,
  		speed: 'fast',
  		autoArrows: false,
  		dropShadows: true
  	});
  	
  }
	
	/*===========================
	*
	* Pluginname: jCapSlide: A jQuery Image Caption Plugin
	* Date Created: 03/06/2010
	* Last Update: 03/06/2010
	*	Source: http://tympanus.net/codrops/2009/11/23/jcapslide-a-jquery-image-caption-plugin/
	* Description: Image Caption Plugin
	*
	*===========================*/
	
	if ( $('.ic_container') ) {
	
		$('.ic_container').capslide({
			caption_color: '#333333',
			caption_bgcolor: '#fff',
			overlay_bgcolor: '#fff',
			border: '',
			showcaption: true
		});
	}
	

});
